dataguard 检查-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502768
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2020-11-20 15:54:10

除了看alert.log,简单的查询当前状态,在备库上执行以下语句:

  1. col open_mode for a10
  2. col protection_mode for a20
  3. col database_role for a18
  4. col switchover_status for a17
  5. col thread# for 99
  6. col name for a10
  7. col diff for 9999
  8. set lin 200
  9. select a.thread#,c.name,c.open_mode,c.protection_mode,c.database_role,c.switchover_status,a.applog,b.nowlog, a.applog- b.nowlog diff from (select thread#, max(sequence#) as "applog" from v$archived_log where applied='yes' and resetlogs_change#=(select resetlogs_change# from v$database) group by thread#) a,(select thread#, max(sequence#) as "nowlog" from v$log group by thread#) b,v$database c where a.thread#=b.thread#;

  10. set lin 200 pages 100
  11. col process for a11
  12. col pid for 99999999
  13. col status for a15
  14. col client_process for a11
  15. col client_pid for a11
  16. col group# for a5
  17. col sequence# for 99999999
  18. col block# for 99999999
  19. col blocks for 99999999
  20. col delay_mins for 99999999
  21. col thread# for 99
  22. select process,pid,status,client_process,client_pid,group#,thread#,sequence#,block#,blocks,delay_mins from v$managed_standby;
第一个语句看diff列,不要超过-3(即主库比备库大3个)。
第二个语句看process=mrp0的那一行对应的status应该是applying_log状态,且如果执行一次block#就增加一些,说明同步正常。
阅读(1088) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图