Oracle Shutdown / Restart

by Wolfram Saringer  (2014-02-10)
last change: 2014-02-10


Start SQL*Plus:
sqlplus /nolog

And use the following commands to shut an instance down:
SQL> connect system as sysdba;
SQL> shutdown immediate;

Use 'shutdown abort;' in case there are hanging connections/processes, but keep in mind that this kills those processes (i.e. use at your own risk).

Shutdown + Start:
sqlplus /nolog

SQL> connect system as sysdba;
SQL> startup force;


all articles represent the sole opinion of their respective author. all content comes without any warranty for correctnes, despite due diligence.