Start & Stop Oracle Database: Quick Guide
Start the Oracle database instance.
- Open the command line window or terminal.
- Enter the following command to start the Oracle database instance:
sqlplus / as sysdba
startup
- To check the status of the database instance, wait for it to finish starting up and then use the following command.
select status from v$instance;
Stop the Oracle database instance.
- Open a command prompt window or terminal.
- Enter the command to stop the Oracle database instance.
sqlplus / as sysdba
shutdown
- To check the status of the database instance, wait for it to be fully closed and then use the following command.
select status from v$instance;
Please make sure to save all data and ensure no users are performing important operations before stopping the database instance.