Monday, 15 January 2018

Shutting Down Oracle Database

Oracle Database shutdown in 3 phases as below:

1- Close the DB- By close all new transaction acceptance are stopped, current transaction are complete depends upon command issue.

SQL> alter database close;
Database altered.
SQL>

2- Database Dismount

SQL> alter database dismount;
Database altered.
SQL> 

3- Shutdown Instance- As there is nothing running so we can abort it.

SQL> shutdown abort;
ORACLE instance shut down.
SQL>

No comments:

Post a Comment

Installing Oracle 11g on Linux

Unpack Files Unzip the files. # 11.2.0.1 unzip linux.x64_11gR2_database_1of2.zip unzip linux.x64_11gR2_database_2of2.zip #11.2.0.2 u...