Oracle Database 11g Gata Guard Manual Switch Over on Linux

Oracle Data Guard -- Manual Switch Over ON PRIMARY DATABASE: Step # 1 Check Role of Primary Database SQL> Select Database_role from v$database; It will return "Primary". Step # 2 Now check Switchover status of the database. SQL> Select switchover_status from v$database; It will return "Session Active" Step # 3 Now perform manual switchover. SQL> Alter Database commit to switchover to physical standby with session shutdown; Database Altered. Your Database has become Physical Standby. Step # 4 You can verify this by querying Database_role of v$database, this time it will return "Physical Standby". Shutdown the database and again start it to mount stage. SQL> Shutdown Immediate; SQL> Startup Mount; SQL> Select Database_role from v$database; DATABASE_ROLE ------------------------- PHYSICAL STANDBY ON STANDBY DATABASE: Step # 1 Check Role of Standby Database SQL> Select Database_role f...