A failover is typically used only when the Oracle primary database becomes unavailable
A failover is typically used only when the primary database becomes unavailable, and there is no possibility of restoring it to service within a reasonable period of time Performing a Failover to a Physical Standby Database – Step 01- Flush any unsent redo from the primary database to the target standby database If the primary database can be mounted, it may be possible to flush any unsent archived and current redo from the primary database to the standby database. If this operation is successful, a zero data loss failover is possible even if the primary database is not in a zero data loss data protection mode. Mount, but do not open primary database. If primary database cannot be mounted go to step 2. On Primary database ( if accessible during real disaster ) SQL> ALTER SYSTEM FLUSH REDO TO target_db_name; For target_db_name, specify the DB_UNIQUE_NAME of the standby database that is to receive the redo flushed from the primary database. This statement flushes any unsent...