Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

RMAN-20035: Invalid High RECID In Rman Catalog

Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
  • User AvatarKiran Dalvi
  • 01 Dec, 2023
  • 0 Comments
  • 1 Min Read

RMAN-20035: Invalid High RECID In Rman Catalog

You can get this error after connecting to catalog database.

executing command: SET COMMAND ID
starting full resync of recovery catalog
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of set command at 07/27/2023 10:54:19
RMAN-03014: implicit resync of recovery catalog failed

on default channel at 07/27/2023 10:54:19
RMAN-20035: invalid high RECID

Solution : 
Unregister the database and register again .
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
$ rman
 
Recovery Manager: Release 12.1.0.2.0 - Production on Fri Sep 23 11:10:19 2023
 
Copyright (c) 1982, 2014, Oracle and/or its affiliates. All rights reserved.
 
RMAN> connect target sys/oracle@TESTDB
 
connected to target database: TESTDB(DBID=3098444898)
 
RMAN> connect catalog RMAN_db/rman@CATLOGDB
 
connected to recovery catalog database
 
 
RMAN> unregister database;
 
database name is "BSSPRDM" and DBID is 1302028423
 
Do you really want to unregister the database (enter YES or NO)? YES
database unregistered from the recovery catalog
 
RMAN> register database;
 
database registered in recovery catalog
starting full resync of recovery catalog
full resync complete
Now run rman command, it will work:
RMAN> backup archivelog all delete input
 
executing command: SET COMMAND ID
 
allocated channel: t1
channel t1: SID=1455 instance=BSSPRDM1 device type=SBT_TAPE
channel t1: NMDA Oracle v8.2.2
 
allocated channel: t2
channel t2: SID=394 instance=BSSPRDM1 device type=SBT_TAPE
channel t2: NMDA Oracle v8.2.2
 
sql statement: alter database backup controlfile to trace
 
specification does not match any archived log in the repository
 
starting full resync of recovery catalog
full resync complete
 
Starting backup at 27-JUL-23
current log archived
channel t1: starting archived log backup set
channel t1: specifying archived log(s) in backup set
input archived log thread=1 sequence=7492 RECID=10274 STAMP=918315965
channel t1: starting piece 1 at 27-JUL-23
channel t2: starting archived log backup set
channel t2: specifying archived log(s) in backup set
input archived log thread=2 sequence=2782 RECID=10273 STAMP=918315961
channel t2: starting piece 1 at 27-JUL-23
channel t2: finished piece 1 at 27-JUL-23
piece handle=RMAN_BSSPRDM_arc_f_20230727_28601_tprbootu_1_1.bak tag=TAG20230727T154606 comment=API Version 2.0,MMS Version 8.2.2.0
channel t2: backup set complete, elapsed time: 00:00:45
channel t1: finished piece 1 at 27-JUL-23
piece handle=RMAN_BSSPRDM_arc_f_20230727_28600_torbootu_1_1.bak tag=TAG20230727T154606 comment=API Version 2.0,MMS Version 8.2.2.0
channel t1: backup set complete, elapsed time: 00:00:55
Finished backup at 27-JUL-                                   23

Hope it Helps!