Dataguard essential queries
Query to check the log gap on primary/standby database:
set pagesize 300
set linesize 200
set wrap off
select thread#, sequence#, applied,to_char(first_time,'mm/dd/yy hh24:mi:ss') first,to_char(next_time, 'mm/dd/yy hh24:mi:ss') next,to_char(completion_time, 'mm/dd/yy hh24:mi:ss') completion from v$archived_log where thread# = 1 order by first_time;
No comments:
Post a Comment
If you have any queries/ any suggestion please do comment and let me know.