我使用RMAN进行backup,但是却报错,不明白哪里出了问题,请指教,报错如下:
RMAN> backup database format '/opt/ora_data/backup/aaa%U';Starting backup at 26-MAR-09
using channel ORA_DISK_1
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 03/26/2009 23:14:34
ORA-01013: user requested cancel of current operation
continuing other job steps, job failed will not be re-run
channel ORA_DISK_1: starting full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
including current control file in backupset
including current SPFILE in backupset
channel ORA_DISK_1: starting piece 1 at 26-MAR-09
channel ORA_DISK_1: finished piece 1 at 26-MAR-09
piece handle=/opt/ora_data/backup/aaa08katvqr_1_1 tag=TAG20090326T231434 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================RMAN-03009: failure of backup command on ORA_DISK_1 channel at 03/26/2009 23:14:34
ORA-01013: user requested cancel of current operation

解决方案 »

  1.   

    你看:ORA-01013: user requested cancel of current operation
      

  2.   

    ORA-01013 user requested cancel of current operationCause: The user interrupted an Oracle operation by entering CTRL-C, Control-C, or another canceling operation. This forces the current operation to end. This is an informational message only.你是不是不小心按了中止啊
      

  3.   

    问题找到了,原来是我的LOG_MODE是NOARCHIVELOG,所以导致报错,后来我将LOG_MODE修改为ARCHIVELOG后,备份正常。谢谢。