v$archive-凯发app官方网站

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

偶尔有空上来看看

文章分类

全部博文(679)

文章存档

2023年(38)

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

2021-07-27 23:03:12

原因可能是:
当备用数据库具有不同的化身( 查v$database_incarnation )时,可能会发生这种情况。
每当使用 resetlogs 选项(例如闪回、故障转移)打开数据库时,数据库都会创建一个新的化身

例如:

解决方法1:

  1. --v$archive_gap 的替代sql

  2. select userenv('instance'), high.thread#, low.lsq, high.hsq
  3.   from (select a.thread#, rcvsq, min(a.sequence#) - 1 hsq
  4.           from v$archived_log a,
  5.                (select thread#, resetlogs_change#, max(sequence#) rcvsq
  6.                   from v$log_history
  7.                  where (thread#, resetlogs_change#) in
  8.                        (select thread#, max(resetlogs_change#)
  9.                           from v$log_history
  10.                          group by thread#)
  11.                  group by thread#, resetlogs_change#) b
  12.          where a.thread# = b.thread#
  13.            and a.resetlogs_change# = b.resetlogs_change#
  14.            and a.sequence# > rcvsq
  15.          group by a.thread#, rcvsq) high,
  16.        (select srl_lsq.thread#, nvl(lh_lsq.lsq, srl_lsq.lsq) lsq
  17.           from (select thread#, min(sequence#) 1 lsq
  18.                   from v$log_history, v$datafile
  19.                  where checkpoint_change# <= next_change#
  20.                    and checkpoint_change# >= first_change#
  21.                    and enabled = 'read write'
  22.                  group by thread#) lh_lsq,
  23.                (select thread#, max(sequence#) 1 lsq
  24.                   from v$log_history
  25.                  where (select min(checkpoint_change#)
  26.                           from v$datafile
  27.                          where enabled = 'read write') >= next_change#
  28.                  group by thread#) srl_lsq
  29.          where srl_lsq.thread# = lh_lsq.thread#()) low
  30.  where low.thread# = high.thread#
  31.    and lsq < = hsq
  32.    and hsq > rcvsq;

解决方法2:
如果方法 1 的替代 sql 仍然没有显示 gap,请重新创建备用控制文件。这将清除 v$archived_log 中的当前归档日志。

在主库上:
alter database create standby controlfile as '/tmp/ctl_for_standby';
scp到备库上
备库上:
shu abort
改名
mv ctl_for_standby control01.dbf
startup mount
recover managed standby database disconnect;

参考
v$archive_gap doesn't show a existing gap (doc id 974730.1)
steps to recreate a physical standby controlfile (doc id 459411.1)
阅读(2238) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图