首页 > 其他 > 详细

转 RMAN-20033

时间:2021-01-11 11:57:03      阅读:50      评论:0      收藏:0      [点我收藏+]

.备份日志里报错RMAN-20033

RMAN-03008: error while performing automatic resync of recovery catalog

RMAN-20033: control file SEQUENCE# too low

 

 

  1. 最可原因是一个全备和一个归档日志备份 同时进行,

Catalog 一次更新一次,导致另一个备份报错归档日志的序列号

过旧,

 

官方建议:是在catalog库重新注册一个db,或者 重新初始化controlfile

 

 

Wednesday, 9 August 2017

RMAN-20033: control file SEQUENCE# too low

Most probably the true reason for that error to occur is a race condition between 2 concurrent backup processes - for example one full backup and one archivelog backup with autobackup enabled. Thus both would synchronize with RMAN catalog and one of them may try to register controlfile being older than the last one already registered by the 2nd process.

On Metalink they suggests a weird solution for this (Rman-20033 Control File Sequence# Too Low (Doc ID 342696.1)) to recreate the controlfile or RMAN catalog - it is possible it may be needed in some scenario, but I guess the best way first is simply rerun the backup ensuring there is only one backup process running.

 

 

解决办法:

  1. 重新注册dbcatlog catalog

 

 

-首先检查catatlog 库,nods 信息

sqlplus rman11g/rman11g@cat11g

col name for a6

select  *   from rc_database where name=‘NODS‘;

    DB_KEY  DBINC_KEY       DBID NAME   RESETLOGS_CHANGE# RESETLOGS_TIME

---------- ---------- ---------- ------ ----------------- ------------------

     26369   45331854 1522978174 NODS          1.3129E+10 17-SEP-17

 102280754  102280755 1747437707 NODS                   1 07-DEC-19

 

--unregister 跑一分钟

rman target  / catalog rman11g/rman11g@cat11g

RMAN> unregister database;

 

database name is "NODS" and DBID is 1747437707

 

Do you really want to unregister the database (enter YES or NO)? YES

database unregistered from the recovery catalog

 

--register 5分钟

rman target  / catalog rman11g/rman11g@cat11g

RMAN> register database;

 

database registered in recovery catalog

starting full resync of recovery catalog

 

 

    1. 然后修改备份模式从网络备份 改到 san 备份

转 RMAN-20033

原文:https://www.cnblogs.com/feiyun8616/p/14261078.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!