How to Resolve Gap Sequence on Physical Standby Databases
Answer: Resolving Archive Gap Sequence on Physical Standby Databases Oracle9i has introduced many new features designed to detect and resolve gap sequences. One of the main improvements is the new Fetch Archive Log service using fal_server and fal_client parameters. In spite of these automated process, there are certain scenarios when the gap sequence cannot be avoided, and the DBA needs to intervene to resume the managed recovery on the physical standby database. Resolving Archive Gap Sequence on Physical Standby Databases Usually, a stalled managed recovery process is the indication of gap sequence. If the recovery process on the physical standby site is stopped, query the v$archive_gap view to find the gap sequence. The query find_gap.sql from code depot will assist in finding out if there is any archive log gap in the database. Select THREAD#, LOW_SEQUENCE#, HIGH_SEQUENCE# From V$ARCHIVE_GAP; THREAD# LOW_SEQUENCE# HIGH_SEQUENCE# -------- ----...