How to resolve RMAN-06429: TARGET database is not compatible with this version of RMAN

In my case I was tried to get RMAN full backup from my prod database.

While connecting with RMAN Command window getting the following errors:


RMAN-06438: error executing package DBMS_RCVMAN in TARGET database
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============
RMAN-00571: ===========================================================
RMAN-00554: initialization of internal recovery manager package failed
RMAN-06429: TARGET database is not compatible with this version of RMAN

Cause
“SYS.DBMS_RCVMAN” package has error which causing the problem. May be package is in-valid state.

Solution

1. We tried to check in target database if it’s invalid.

select OWNER, STATUS, substr(OBJECT_NAME,1,40), OBJECT_TYPE from DBA_OBJECTS where OBJECT_NAME IN ('DBMS_RCVMAN', 'DBMS_BACKUP_RESTORE' ) ;

2. Try to recompile it and check the status.

@$ORACLE_HOME/rdbms/admin/utlrp.sql

3. If 2nd steps is not working the package is not become valid, then try to re-create the package by executing following steps from SYS user.

@?/rdbms/admin/dbmsrman.sql
@?/rdbms/admin/prvtrmns.plb

Comments

Popular posts from this blog

[FATAL] [DBT-10503] Template file is not specified

Resolving ORA-10635 and ORA-39171 Errors During BLOB Tablespace Maintenance

How to resolve RMAN-06035: wrong version of recover.bsq, expecting 11.2.0.4, found 11.2.0.2