- 论坛徽章:
- 0
|
[code]
C:\>rman target /
Recovery Manager: Release 10.1.0.2.0 - Production
Copyright (c) 1995, 2004, Oracle. All rights reserved.
connected to target database: ORCL (DBID=1218420383)
RMAN> RUN {
2> ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
3> BACKUP
4> DATABASE;
5> sql 'alter system archive log current';
6> RELEASE CHANNEL ch00;
7>
8> ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
9> BACKUP
10> FILESPERSET 20
11> ARCHIVELOG ALL;
12> RELEASE CHANNEL ch00;
13> }
allocated channel: ch00
channel ch00: sid=138 devtype=SBT_TAPE
channel ch00: Veritas NetBackup for Oracle - Release 6.5 (20070723)
Starting backup at 28-6月 -09
channel ch00: starting full datafile backupset
channel ch00: specifying datafile(s) in backupset
input datafile fno=00001 name=C:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\SYSTEM01.DBF
input datafile fno=00003 name=C:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\SYSAUX01.DBF
input datafile fno=00002 name=C:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\UNDOTBS01.DBF
input datafile fno=00004 name=C:\ORACLE\PRODUCT\10.1.0\ORADATA\ORCL\USERS01.DBF
channel ch00: starting piece 1 at 28-6月 -09
RMAN-03009: failure of backup command on ch00 channel at 06/28/2009 14:49:31
ORA-27206: requested file not found in media management catalog
continuing other job steps, job failed will not be re-run
channel ch00: starting full datafile backupset
channel ch00: specifying datafile(s) in backupset
including current controlfile in backupset
including current SPFILE in backupset
channel ch00: starting piece 1 at 28-6月 -09
released channel: ch00
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ch00 channel at 06/28/2009 14:50:07
ORA-27206: requested file not found in media management catalog
RMAN>
[code] |
|