Hello.
My goal is to create a new Oracle database instance with a specific name.
I called it 'orcl'. But after adding a new instance to the database, you need to restart this new database instance.
All anything, only the following commands that I found to achieve a similar operation work only in Linux / Unix:
$srvctl stop database -d orcl $srvctl start database -d orcl And my Oracle database server is installed on Windows :)
I know in advance that you will say that "why did you deploy the database server on it?" etc., so I answer right away: for now it is very convenient to study technologies through Windows, because unlike * nix, this OS is easy to use, but when I’m going to raise the server in a real task, then only on Linux / Unix.
I tried to use these commands in the Windows command line, but they also do not work ("srvctl" is not an internal or external command, an executable program, or a batch file.).
Question: How else can you stop and then restart the 'orcl' instance?
Maybe there is another way to restart the database instance? If there is, then I beg to describe it in detail.
If not, then please, tell me: How to install the srvctl service on Windows so that I can start it from the command line and restart my database instance 'orcl' through it? And then something Google gives me only info about installing a database instance for Linux / Unix users.