在数据迁移的时候遇到报错
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 11/14/2024 20:40:23
RMAN-05501: aborting duplication of target database
RMAN-06136: ORACLE error from auxiliary database: ORA-01503: CREATE CONTROLFILE failed
ORA-00349: failure obtaining block size for '+EBSPROD'
ORA-29701: unable to connect to Cluster Synchronization Service
ORA-29701: unable to connect to Cluster Synchronization Service
ORA-29701: unable to connect to Cluster Synchronization Service
RMAN>
报错原因:
这个参数文件没有配置好
log_file_name_convert
查看一下源库的redo 日志文件的位置
select member from v$logfile;
然后调整此参数比如
*.log_file_name_convert='+EBSPROD/PROD/ONLINELOG/','/u01/nuat/db/data/'
调整后,删除之前的恢复的数据,在重新进行恢复数据
参考文档:RMAN Duplicate failing with RMAN-06136, ORA-01503, ORA-00349 (Doc ID 2206423.1)
标签:01503,Duplicate,RMAN,00349,06136,ORA From: https://www.cnblogs.com/zy-303/p/18546935