我是靠谱客的博主 整齐酸奶,最近开发中收集的这篇文章主要介绍DG观察日志传输,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

--primary端查询v$archived_log视图,确认日志是否被应用:

 
set lines 300 pages 300
col name for a20
select name,dest_id,thread#,sequence#,standby_dest,applied,registrar,completion_time from v$archived_log
where standby_dest='YES'
order by thread#,sequence#;
 
 
 
--primary端查询primary,standby的最大日志序列号是否一致:
 
select 'Primary :' "DB Role",thread#,max(sequence#)
from v$archived_log
where standby_dest='NO'
group by thread#
union
select 'Standby :' "DB Role",thread#,max(sequence#)
from v$archived_log
where standby_dest='YES' and applied='YES'
group by thread#
order by thread#;

转载于:https://www.cnblogs.com/liang545621/p/9407292.html

最后

以上就是整齐酸奶为你收集整理的DG观察日志传输的全部内容,希望文章能够帮你解决DG观察日志传输所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部