Ensuring business continuity requires regular Disaster Recovery (DR) drills. This guide covers the Switchover and Switchback process between Primary (DC) and Standby (DR) databases.
Pre-checks Before Performing Switchover
Before starting the activity, ensure there are no active sessions in the database. If any are found, share the session details with the application team, get their confirmation, and terminate the sessions.
Primary Database Name: PRIMARY
Standby Database Name: STANDBY
Identify Active Sessions
set lines 999 pages 999
col machine for a30
col username for a30
col program for a30
compute sum of count on report
break on report
select inst_id,username,osuser,machine,program,status,count(1) "count" from gv$session where inst_id=1 and program like 'JDBC%' group by inst_id,username,osuser,machine,program,status order by 1,2;
select inst_id,username,osuser,machine,program,status,count(1) "count" from gv$session where inst_id=2 and program like 'JDBC%' group by inst_id,username,osuser,machine,program,status order by 1,2;
Terminate Sessions
select 'alter system kill session ''' || sid || ',' || serial# || ',' || '@' || INST_ID || ''' IMMEDIATE;' from gv$session where username not in ('OGG','sys');
select 'alter system kill session ''' || sid || ',' || serial# || ',' || '@' || INST_ID || ''' IMMEDIATE;' from gv$session where sql_id='SQL_ID';
Switchover: Data Center (DC) to Disaster Recovery (DR)
On Primary Database Check (10.44.101.71/72)
Verify Database Readiness
Check the primary and standby database synchronization using:
SQL> select status,instance_name,database_role,open_mode,switchover_status from v$database,gv$instance;
Ensure that the status is "TO STANDBY" on the primary and "TO PRIMARY" on the standby.
SQL> select status, gap_status from v$archive_dest_status where dest_id = 2;
Ensure no archive log gap exists between DC and DR.
SQL> alter database switchover to STANDBY verify;
SQL> alter system archive log current;
SQL> alter database switchover to STANDBY;
On Standby Database Activation (10.22.101.71)
SQL> select status,instance_name,database_role,open_mode from v$database,gv$instance;
SQL> shut immediate;
SQL> startup mount;
SQL> alter database open;
Restart Standby Database (Former Primary: 10.44.101.71/72)
srvctl start database -d PRIMARY -o mount;
SQL> alter database recover managed standby database disconnect from session;
Ensure Synchronization
SQL> alter system archive log current;
SQL> select thread#,process,status,sequence#,blocks from gv$managed_standby;
Confirm synchronization before notifying the application team.
Switchback: Disaster Recovery (DR) to Data Center (DC)
Check Current Roles
Current Primary (10.22.101.71)
SQL> select name, DB_UNIQUE_NAME from gv$database;
SQL> select switchover_status from v$database;
SQL> select inst_id,status, gap_status,error from gv$archive_dest_status where dest_id = 2;
Ensure switchover_status is TO STANDBY
and no archive log gap exists.
Execute Switchover
SQL> alter database switchover to PRIMARY verify;
SQL> alter system archive log current;
SQL> alter database switchover to PRIMARY;
Revert Roles
Standby (Current Primary: 10.44.101.71/72)
srvctl stop database -d PRIMARY;
srvctl start database -d PRIMARY -o open;
SQL> select status,instance_name,database_role,open_mode from v$database,gv$instance;
Former Primary (Current Standby: 10.22.101.71)
srvctl start database -d STANDBY -o mount;
SQL> alter database recover managed standby database disconnect from session;
Final Synchronization Check
SQL> alter system archive log current;
SQL> select thread#,process,status,sequence#,blocks from gv$managed_standby;
Confirm standby synchronization before notifying the application team that the switchback is completed.
Regular DR drills are critical for business continuity. By following this step-by-step guide, teams can ensure seamless switchover and switchback processes without data loss.
Comments
Post a Comment