Hi Rathore
please have a look at the following
Verify Redo is Current with Primary
Make certain that the standby (physical or logical) is applying changes from the primary. Also verify that the application of redo is current with the primary.
From the primary database, perform a log switch and then verify the transmissions of the archived redo log file was successful. If the transmission was successful, the status of the destination will be VALID as shown below.
|
Once it has been determined that the redo stream is current, make sure that the redo has been applied to the standby database. In the case of a physical standby database, verify Redo Apply by querying the status of the MRP0 process in V$MANAGED_STANDBY:
|
In the case of a physical standby database, if the MRP0 record is not returned in the above query, then redo apply is not running. In order ensure an efficient switchover process, Redo Apply should be started and caught up with the current redo stream:
|
If the MRP0 record is returned but shows a status of WAIT_FOR_GAP, the switchover operation cannot occur until the redo gap has been resolved.
If the status of the MRP0 process is APPLYING_LOG then the standby is current and using real-time apply and current with the primary database.
Finally, if the status of the MRP0 process is WAIT_FOR_LOG, the standby is not running real-time apply (which is OK) or the DELAY qualifier was specified for the destination. If the DELAY qualifier was specified, stop the apply process and restart it with the NODELAY qualifier; otherwise the switchover operation will not complete. If the DELAY qualifier was not set and the standby is not using real-time apply, then it should be current with the primary database.
Verify Standby Redo Log (SRL) Files on the Primary
The physical standby database used in this example is configured with standby redo log (SRL) files. Verify that SRL files have been created on the current primary database so that it can receive the redo when it becomes a standby.
|
source: http://www.idevelopment.info/data/Oracle/DBA_tips/Data_Guard/DG_47.shtml
Hope it helps
Marius