Drop database in oracle RAC DBACLASS
Drop database in oracle RAC , Change the parameter cluster_database to False and start database in mount exclusive mode.
oracle clusteringintermediate
by OracleDba
15 views
Drop database in oracle RAC , Change the parameter cluster_database to False and start database in mount exclusive mode.
123
SQL> alter system set cluster_database=FALSE scope=spfile sid='*';
System altered.123456789101112131415161718
Srvctl stop database –d DBACLASS
SQL> startup mount exclusive restrict
ORACLE instance started.
Total System Global Area 1.0737E+11 bytes
Fixed Size 7647784 bytes
Variable Size 8.2410E+10 bytes
Database Buffers 2.4159E+10 bytes
Redo Buffers 797655040 bytes
Database mounted.
SQL> select instance_name,status,logins from v$Instance;
INSTANCE_NAME STATUS LOGINS
---------------- ------------ ----------
DBACLASS MOUNTED RESTRICTED12345
SQL> drop database;
Database dropped.
srvctl remove database -db DBACLASSPlease to add comments
No comments yet. Be the first to comment!