Home » RDBMS Server » Backup & Recovery » rman error with backupexec 11d
rman error with backupexec 11d [message #278836] Mon, 05 November 2007 19:28 Go to next message
siggim
Messages: 1
Registered: November 2007
Junior Member
Recovery Manager: Release 8.1.7.0.0 - Production


# -----------------------------------------------------------------
# RMAN command section
# -----------------------------------------------------------------

RUN {
ALLOCATE CHANNEL ch0
TYPE 'SBT_TAPE';
SEND 'BSA_SERVICE_HOST=10.100.10.10,NBBSA_TOTAL_STREAMS=1,NBBSA_JOB_COOKIE={A90BB09D-14E9-4FE1-A5CB-4165FED7A3F7},NBBSA_DB_DEVICE_NAME=Ora cle-Win::\\STYKKI\ORCL';
BACKUP
INCREMENTAL LEVEL=0
FORMAT 'BE_U'
DATABASE;
BACKUP
FORMAT 'BE_U'
ARCHIVELOG ALL;
sql "ALTER SYSTEM ARCHIVE LOG CURRENT";
BACKUP ARCHIVELOG FROM TIME "TO_DATE('11/5/2007 23:0:15', 'MM/DD/YYYY HH24:MI:SS')";
BACKUP CURRENT CONTROLFILE
FORMAT 'BE_U';

RELEASE CHANNEL ch0;
}

RMAN-06005: connected to target database: ORCL (DBID=1034228659)
RMAN-06009: using target database controlfile instead of recovery catalog

RMAN-03022: compiling command: allocate
RMAN-03023: executing command: allocate
RMAN-08030: allocated channel: ch0
RMAN-08500: channel ch0: sid=13 devtype=SBT_TAPE
RMAN-08526: channel ch0: Symantec/BackupExec/1.1.0

RMAN-03022: compiling command: send
RMAN-06421: sent command to channel: ch0

RMAN-03022: compiling command: backup
RMAN-03023: executing command: backup
RMAN-08008: channel ch0: starting incremental level 0 datafile backupset
RMAN-08502: set_count=28 set_stamp=637887620 creation_time=05.11.2007
RMAN-08010: channel ch0: specifying datafile(s) in backupset
RMAN-08522: input datafile fno=00008 name=G:\ORACLE\ORADATA\ORCL\GL_SAGA_DATA01.ORA
RMAN-08522: input datafile fno=00009 name=G:\ORACLE\ORADATA\ORCL\GL_SAGA_DATA02.ORA
RMAN-08522: input datafile fno=00010 name=G:\ORACLE\ORADATA\ORCL\GL_SAGA_DATA03.ORA
RMAN-08522: input datafile fno=00018 name=G:\ORACLE\ORADATA\ORCL\EMR_BLOB01.ORA
RMAN-08522: input datafile fno=00002 name=G:\ORACLE\ORADATA\ORCL\RBS01.DBF
RMAN-08522: input datafile fno=00011 name=F:\ORACLE\ORADATA\ORCL\GL_SAGA_INDEX01.ORA
RMAN-08522: input datafile fno=00012 name=F:\ORACLE\ORADATA\ORCL\GL_SAGA_INDEX02.ORA
RMAN-08522: input datafile fno=00013 name=F:\ORACLE\ORADATA\ORCL\GL_SAGA_INDEX03.ORA
RMAN-08522: input datafile fno=00001 name=G:\ORACLE\ORADATA\ORCL\SYSTEM01.DBF
RMAN-08011: including current controlfile in backupset
RMAN-08522: input datafile fno=00014 name=G:\ORACLE\ORADATA\ORCL\GL_SAGA_STATIC01.ORA
RMAN-08522: input datafile fno=00015 name=G:\ORACLE\ORADATA\ORCL\TEMPORARY_DATA01.ORA
RMAN-08522: input datafile fno=00016 name=F:\ORACLE\ORADATA\ORCL\GL_MONSTER01.ORA
RMAN-08522: input datafile fno=00019 name=G:\ORACLE\ORADATA\ORCL\TH_MORE_LOB01.DBF
RMAN-08522: input datafile fno=00017 name=G:\ORACLE\ORADATA\ORCL\EMR_DAX01.ORA
RMAN-08522: input datafile fno=00003 name=G:\ORACLE\ORADATA\ORCL\USERS01.DBF
RMAN-08522: input datafile fno=00004 name=G:\ORACLE\ORADATA\ORCL\TEMP01.DBF
RMAN-08522: input datafile fno=00006 name=G:\ORACLE\ORADATA\ORCL\INDX01.DBF
RMAN-08522: input datafile fno=00007 name=G:\ORACLE\ORADATA\ORCL\DR01.DBF
RMAN-08522: input datafile fno=00005 name=G:\ORACLE\ORADATA\ORCL\TOOLS01.DBF
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03007: retryable error occurred during execution of command: backup
RMAN-07004: unhandled exception during command execution on channel ch0
RMAN-10032: unhandled exception during execution of job step 1:
RMAN-10035: exception raised in RPC: ORA-19624: operation f
RMAN-10031: ORA-19624 occurred during call to DBMS_BACKUP_RESTORE.BACKUPPIECECREATE

Recovery Manager complete.
Re: rman error with backupexec 11d [message #278837 is a reply to message #278836] Mon, 05 November 2007 19:53 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
Hmmm....
I do/did not recall that RMAN existed for V8.1.7.

I am not sure if the following might cause any problem -
>TO_DATE('11/5/2007 23:0:15', 'MM/DD/YYYY HH24:MI:SS')
where as string does not EXACTLY match the mask;
/5/ for /DD/ & 23:0:15 for HH24:MI:SS
in both cases a possible missing preceeding ZERO is lacking in the string.
TO_DATE('11/05/2007 23:00:15', 'MM/DD/YYYY HH24:MI:SS')

When was the last time RMAN successfully ran for you on this system?
Re: rman error with backupexec 11d [message #279038 is a reply to message #278836] Tue, 06 November 2007 12:40 Go to previous messageGo to next message
jarif
Messages: 5
Registered: September 2007
Junior Member

I could not get Backup Exec to work with 10G either. Browsing after the error message to a Symantec page, I found Symantec's advice: Stick with Oracle backup and do not use our's.

Re: rman error with backupexec 11d [message #279039 is a reply to message #279038] Tue, 06 November 2007 12:42 Go to previous message
jarif
Messages: 5
Registered: September 2007
Junior Member
jarif wrote on Tue, 06 November 2007 20:40


I could not get Backup Exec to work with 10G either. Browsing after the error message to a Symantec page, I found Symantec's advice: Stick with Oracle backup and do not use our's.




http://seer.entsupport.symantec.com/docs/288361.htm

Previous Topic: backup issu
Next Topic: RMAN-recovery wants more archive logs
Goto Forum:
  


Current Time: Mon May 20 08:17:53 CDT 2024