You are currently browsing the tag archive for the ‘RMAN-03009’ tag.
I faced with ORA-19606 error on 11.2.0.4 database. I am using below rman script to take full backup for my database.
Here is my script:
rman target /
run { ALLOCATE CHANNEL C1 device type ‘sbt_tape’ ; ALLOCATE CHANNEL C2 device type ‘sbt_tape’ ; backup database plus archivelog delete input format= ‘DB_SID_DB_%d_%t_%s_%p’; backup archivelog all delete input FORMAT= ‘DB_ARC_%d_%t_%s_%p’; delete force noprompt obsolete; RELEASE CHANNEL C1; RELEASE CHANNEL C2; }
I have faced with that issue on our 12.1.3 EBS system on AIX system with 2 node 11gR2 RAC databases.
During the full backup operation, I noticed that RMAN log mention below error message at the backup log file.
RMAN-03009: failure of backup command on ORA_DISK_3 channel at 03/29/2012 22:19:19 ORA-19566: exceeded limit of 0 corrupt blocks for file +ORADATA/PROD/datafile/apps_ts_xxcustom_data.308.752148073 RMAN-03009: failure of backup command on ORA_DISK_2 channel at 03/29/2012 21:42:32 ORA-19566: exceeded limit of 0 corrupt blocks for file +ORADATA/PROD/datafile/apps_ts_xxcustom_data.395.741949465 RMAN-03009: failure of backup command on ORA_DISK_8 channel at 03/29/2012 22:18:24 ORA-19566: exceeded limit of 0 corrupt blocks for file +ORADATA/PROD/datafile/apps_ts_xxcustom_data.583.753881375
I face with that error message on our 11.2.0.4 RAC database which is working on AIX Operating System.
I started to get ORA-00245: control file backup operation failed &RMAN-03009: failure of Control File and SPFILE Autobackup command on C1 channel xxx errors. I noticed that this error has appeared after I have been enabled block change tracking to can take Incremental backup on my system.