I found a lot of people struggling while administering standby databases. I am sharing here a few of my personal favourite list of queries.
=> determine failing sql statement
select event_time, commit_scn, event, status
from dba_logstdby_events
order by event_time;
=>logical standby sync status
select max(applied_sequence#),max(newest_sequence#) from dba_logstdby_progress;
=>physical standby sync status
select archive_thread#,archived_seq#,applied_thread#,applied_seq# from V$archived_dest_status;
Friday, November 19, 2010
Subscribe to:
Posts (Atom)
Title Changed -- reflects my journey
The title "Evolving Architect: Combining Data, Design, and Project Management" captures my journey as I grow from data-centric e...
-
Errors ORA-00604 & ORA-01425 while restarting SQL apply for logical standby. When one starts the SQL apply on the database... SQL>...
-
Database: Oracle 10gR2 Migrating or upgrading the database bitsize can be at times as challenging as upgrading the db version. I have her...
-
This question sent me in a frenzy of searches to try and get the prefect answer. Oracle , derived from a latin verb, was considered to be...