HI ALL
I trying to backup my database using RMAN for the first time.
using this command
RUN
{
DELETE NOPROMPT OBSOLETE;
CROSSCHECK BACKUP;
CROSSCHECK ARCHIVELOG ALL;
DELETE NOPROMPT EXPIRED BACKUP;
DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
ALLOCATE CHANNEL C1 DEVICE TYPE DISK MAXPIECESIZE 100M;
ALLOCATE CHANNEL C2 DEVICE TYPE DISK MAXPIECESIZE 100M;
ALLOCATE CHANNEL C3 DEVICE TYPE DISK MAXPIECESIZE 100M;
BACKUP INCREMENTAL LEVEL 0 DATABASE TAG Weekly_Friday_0_Hotdb02_bkp;
SQL 'ALTER SYSTEM ARCHIVE LOG CURRENT';
BACKUP DATABASE ARCHIVELOG ALL DELETE ALL INPUT TAG Weekly_Friday_0_Hotdb02_bkp;
BACKUP VALIDATE DATABASE;
BACKUP VALIDATE DATABASE ARCHIVELOG ALL;
}
i get this error message while running it.
Starting backup at 05-JAN-12
channel C1: starting datafile copy
input datafile fno=00004 name=/CDS/data/CDSC01.dbf
channel C2: starting datafile copy
input datafile fno=00002 name=/CDS/rbsg/undo_01.dbf
channel C3: starting datafile copy
input datafile fno=00005 name=/dsee/oradata/DSEE4/dsee4_01.dbf
channel C4: starting datafile copy
input datafile fno=00008 name=/dsee/oradata/DSEE4/dsee4chkpt_01.dbf
channel C5: starting datafile copy
input datafile fno=00009 name=/dsee/oradata/DSEE4/dsee4ar_01.dbf
channel C6: starting datafile copy
input datafile fno=00001 name=/CDS/system/system_01.dbf
RMAN-03009: failure of backup command on C1 channel at 01/05/2012 12:14:34
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
channel C1 disabled, job failed on it will be run on another channel
RMAN-03009: failure of backup command on C2 channel at 01/05/2012 12:14:49
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
channel C2 disabled, job failed on it will be run on another channel
RMAN-03009: failure of backup command on C3 channel at 01/05/2012 12:14:49
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
channel C3 disabled, job failed on it will be run on another channel
RMAN-03009: failure of backup command on C4 channel at 01/05/2012 12:14:49
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
channel C4 disabled, job failed on it will be run on another channel
RMAN-03009: failure of backup command on C6 channel at 01/05/2012 12:15:14
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
channel C6 disabled, job failed on it will be run on another channel
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on C5 channel at 01/05/2012 12:15:24
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
ORA-00600: internal error code, arguments: [ksfdfetch1], [], [], [], [], [], [],
[]
RMAN>
RMAN>
RMAN>
RMAN>
RMAN> -
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00558: error encountered while parsing input commands
RMAN-01006: error signalled during parse
RMAN-02001: unrecognized punctuation symbol "-"
Any one has an idea what this means?
