|
Oracle Home |
|
Home > Oracle Database Administration (DBA) > Replication > Monitor a Standby Database (10g) |
|
Oracle 10g, 11g Database Administration (DBA): Replication |
||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Monitor a Standby Database (10g) |
||||||||||||||||||||||||||||||||||
|
1. Determine the status of redo log files SQL> SELECT THREAD#, SEQUENCE#, ARCHIVED, STATUS FROM V$LOG;
2. Determine the most recent archived redo log file SQL> SELECT MAX(SEQUENCE#), THREAD# FROM V$ARCHIVED_LOG GROUP BY THREAD#;
3. Determine the most recent archived redo log file at each destination SQL>
SELECT DESTINATION, STATUS, ARCHIVED_THREAD#,
ARCHIVED_SEQ#
4. Find out if archived redo log files have been received
You can issue a query at the primary database to find out if an archived redo log file was not received at a particular site. Each destination has an ID number associated with it. You can query the DEST_ID column of the V$ARCHIVE_DEST fixed view on the primary database to identify each destination's ID number.
FROM (SELECT THREAD#, SEQUENCE# FROM V$ARCHIVED_LOG WHERE DEST_ID=1) LOCAL
FROM V$ARCHIVED_LOG For details about monitoring the archiving status of the primary database click here.
5. Monitoring the Performance of Redo Transport Services
The
waits related to a standby database can be found in
Events for Destinations Configured with the ARCH Attribute
Wait Events for Destinations Configured with the LGWR ASYNC Attributes
More information
about this subject (
Monitor a Standby Database (10g) ) you can get from
www.in-oracle.com
|
|
Home > Oracle Database Administration (DBA) > Replication > Monitor a Standby Database (10g) |
|
Different Romanian Links/ Linkuri romanesti diferite |
Disclaimer: The views expressed on this web site are my own and do not reflect the views of Oracle Corporation. You may use the information from this site only at your risk. Copyright (c) 2009-2011 Paul Catalin Tomoiu. All rights reserved.