SQL Server: Graceful Switchover

This section will provide you with details on how to perform a Graceful Switchover (GS).  A GS is done in a controlled manner with zero data loss.  During this process, the primary and standby databases switch roles.

There is a number of checks and steps to be performed as part of this process. Unlike the previous versions, the observer or the daemon services need not be stopped/disabled before the switchover. The multiplatform control center would automatically take care of this.

When a Graceful switchover is initiated, a transaction log backup WITH NORECOVERY option is taken and this puts the primary in restoring mode. The backed up transaction log backup is transferred and restored in standby and the database is put to online mode. Click Start for the process to kick start

 

 

 

 

  1. Preparing the environment for switchover by checking the status of the configuration and observer and disabling it. Disabling the automated standby update.

  2. Convert the standby to primary by taking the backup with norecovery option which puts the primary database in restoring mode

  3. Synchronize the standby by restoring the backup taken on step 1

  4. Activating the standby database by bringing the standby database to Online status

  5. Now the standby becomes primary and the primary becomes the standby and the agentmanager will check the status of the databases

  6. Synchronising new standby by taking a new transaction log backup from the new primary and then restoring the transaction log backup in new standby

  7. The last step is the check the Automated standby update state and observer and enable it.