检查dataguard是否与备用数据库同步。
select thread#,max(sequence#) from v$archived_log where applied=‘YES’ group by thread#;
Data Guard 检查二
Data Guard 检查二
MRP 进程检查

select process,status,client_process,thread#,sequence#,block#,blocks,delay_mins from v$managed_standby
Data Guard 检查二
Data Guard 检查二
停止MRP进程
alter database recover managed standby database cancel;
Data Guard 检查二
应该看不到了
Data Guard 检查二
Data Guard 检查二
启动MRP进程
alter database recover managed standby database disconnect from session;
Data Guard 检查二

select process,status,client_process,thread#,sequence#,block#,blocks,delay_mins from v$managed_standby;
Data Guard 检查二

查看已应用的归档日志
SELECT SEQUENCE#, APPLIED FROM V$ARCHIVED_LOG;
Data Guard 检查二
Data Guard 检查二

查看报错
select message, to_char(timestamp,‘HH:MI:SS’) timestamp
from v$dataguard_status
where severity in (‘Error’,‘Fatal’)
order by timestamp;
Data Guard 检查二

select dest_name,status,error from v$archive_dest where status=‘ERROR’;
Data Guard 检查二

SELECT MESSAGE FROM V$DATAGUARD_STATUS;
Data Guard 检查二

相关文章:

  • 2021-07-25
  • 2021-04-05
  • 2021-05-14
  • 2021-12-11
  • 2021-06-02
  • 2022-12-23
  • 2021-10-17
  • 2021-08-03
猜你喜欢
  • 2021-06-30
  • 2021-07-03
  • 2022-01-17
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
相关资源
相似解决方案