DBAsupport.com Forums - Powered by vBulletin
Results 1 to 7 of 7

Thread: 9i Standby Monitoring

Threaded View

  1. #2
    Join Date
    Oct 2002
    Posts
    807
    select ads.dest_id,max(sequence#) "Current Sequence",max(log_sequence) "Last Archived",
    max(applied_seq#) "Last Sequence Applied"
    from v$archived_log al, v$archive_dest ad, v$archive_dest_status ads
    where ad.dest_id=al.dest_id
    and al.dest_id=ads.dest_id
    group by ads.dest_id;

    select dest_id,database_mode,recovery_mode,
    protection_mode,standby_logfile_count "SRL_COUNT",standby_logfile_active "SRL_ACTIVE",
    archived_seq#, applied_seq#
    from v$archive_dest_status;

    select process,status,client_process,sequence#,block#,active_agents,known_agents
    from v$managed_standby;
    Last edited by Axr2; 08-27-2004 at 01:22 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width