本文主要是介绍ORA 00234 00202 17503 15045,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
转自-------http://blog.csdn.net/ghostliming/article/details/51612031
- 进行RMAN作业的时候,报错:
- RMAN-00571: ===========================================================
- RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
- RMAN-00571: ===========================================================
- RMAN-03009: failure of backup command on d1 channel at 06/08/2016 11:10:49
- ORA-00234: error in identifying or opening snapshot or copy control file
- ORA-00202: control file: '+FRA'
- ORA-17503: ksfdopn:2 Failed to open file +FRA
- ORA-15045: ASM file name '+FRA' is not in reference form
根据MOS文档,RMAN CONFIGURE SNAPSHOT CONTROLFILE to ASM fails ORA-00234 ORA-00202 ORA-17503 ORA-15045 (文档 ID 1564738.1)
作如下调整:
- RMAN> configure snapshot controlfile name clear;
-
- using target database control file instead of recovery catalog
- old RMAN configuration parameters:
- CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+FRA';
- RMAN configuration parameters are successfully reset to default value
-
- RMAN> configure snapshot controlfile name to '+FRA/snapcf_prod.f';
-
- new RMAN configuration parameters:
- CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+FRA/snapcf_prod.f';
- new RMAN configuration parameters are successfully stored
再次备份,无错误。
- released channel: d1
-
- released channel: d2
-
- released channel: d3
-
- Recovery Manager complete.
-
这篇关于ORA 00234 00202 17503 15045的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!