Monday 7 March 2016

RMAN-00600 [8546] Trying To Duplicate Database.

Error:

Duplicating database - control files are restored, data files are stamped, memory script is displayed and then error occurs.

RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00601: fatal error in recovery manager
RMAN-03012: fatal error during compilation of command
RMAN-03028: fatal error code for command recover : 600
RMAN-00600: internal error, arguments [8546] [1] [] [] []

duplicate database to TEST backup location '/data01/PROD_BKP/FULL_BKP/' SKIP TABLESPACE DATA,IAS_ORASDPM,MDS, OCS,SOAINFRA nofilenamecheck;

Fix:

Need to follow the below procedure to solve this issue:

1. Use NORESUME in the second duplicate. This will mean that all datafiles will be restored again with the consequent expenditure of time.

or

2. Do not use a RECOVERY CATALOG

or

3.Use explicit set newname for datafiles not converted by a db_file_name_convert clause.


Again  need to start the duplicate clone with :

duplicate database to TEST backup location '/data01/PROD_BKP/FULL_BKP/' SKIP TABLESPACE DATA,IAS_ORASDPM,MDS, OCS,SOAINFRA nofilenamecheck NORESUME;

Ref: (Doc ID 1283862.1)

No comments:

Post a Comment