How to Drop or Remove or Decommission a Database in Oracle.
Database Decommission steps for Oracle 10G and 11g databases are as follows :
oracle configurationintermediate
by OracleDba
17 views
Database Decommission steps for Oracle 10G and 11g databases are as follows :
12345678910111213141516171819202122232425262728293031
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup restrict mount
ORACLE instance started.
Total System Global Area xxxxxxxxxx bytes
Fixed Size xxxxxxx bytes
Variable Size xxxxxxxxxx bytes
Database Buffers xxxxxxxxxx bytes
Redo Buffers xxxxxxx bytes
Database mounted.
SQL> drop database;
Database dropped.
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup restrict mount
ORACLE instance started.
Total System Global Area xxxxxxxxxx bytes
Fixed Size xxxxxxx bytes
Variable Size xxxxxxxxxx bytes
Database Buffers xxxxxxxxxx bytes
Redo Buffers xxxxxxx bytes
Database mounted.
SQL> drop database;
Database dropped.Please to add comments
No comments yet. Be the first to comment!