ORA 00234 00202 17503 15045


转自-------http://blog.csdn.net/ghostliming/article/details/51612031
[html]  view plain   copy
  1. 进行RMAN作业的时候,报错:  
  2. RMAN-00571: ===========================================================  
  3. RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============  
  4. RMAN-00571: ===========================================================  
  5. RMAN-03009: failure of backup command on d1 channel at 06/08/2016 11:10:49  
  6. ORA-00234: error in identifying or opening snapshot or copy control file  
  7. ORA-00202: control file: '+FRA'  
  8. ORA-17503: ksfdopn:2 Failed to open file +FRA  
  9. 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)

作如下调整:

[html]  view plain   copy
  1. RMAN> configure snapshot controlfile name clear;  
  2.   
  3. using target database control file instead of recovery catalog  
  4. old RMAN configuration parameters:  
  5. CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+FRA';  
  6. RMAN configuration parameters are successfully reset to default value  
  7.   
  8. RMAN> configure snapshot controlfile name to '+FRA/snapcf_prod.f';  
  9.   
  10. new RMAN configuration parameters:  
  11. CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+FRA/snapcf_prod.f';  
  12. new RMAN configuration parameters are successfully stored  

再次备份,无错误。

[html]  view plain   copy
  1. released channel: d1  
  2.   
  3. released channel: d2  
  4.   
  5. released channel: d3  
  6.   
  7. Recovery Manager complete.  
  8.                                 

猜你喜欢

转载自blog.csdn.net/songyundong1993/article/details/74170914