如何在RMAN上出现错误

时间:2015-11-18 09:26:02

标签: oracle rman

我在RMAN中遇到以下错误: -

Starting backup at 18-NOV-15
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00001 name=/u01/app/oracle/oradata/orcl/system01.dbf
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/18/2015 14:19:36
ORA-17628: Oracle error 19505 returned by remote Oracle server
continuing other job steps, job failed will not be re-run
channel ORA_DISK_1: starting datafile copy
input datafile file number=00002 name=/u01/app/oracle/oradata/orcl/sysaux01.dbf
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/18/2015 14:19:37
ORA-17628: Oracle error 19505 returned by remote Oracle server
continuing other job steps, job failed will not be re-run
channel ORA_DISK_1: starting datafile copy
input datafile file number=00003 name=/u01/app/oracle/oradata/orcl/undotbs01.dbf
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/18/2015 14:19:38
ORA-17628: Oracle error 19505 returned by remote Oracle server
continuing other job steps, job failed will not be re-run
channel ORA_DISK_1: starting datafile copy
input datafile file number=00004 name=/u01/app/oracle/oradata/orcl/users01.dbf
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 11/18/2015 14:19:40
RMAN-03015: error occurred in stored script Memory Script
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/18/2015 14:19:39
ORA-17628: Oracle error 19505 returned by remote Oracle

2 个答案:

答案 0 :(得分:0)

create or replace PROCEDURE update_qty is v_plt_no nvarchar2(20); v_qty number; cursor q1 is select count(slab_no) into v_qty from prod_result where plt_no = v_plt_no; begin OPEN q1; FETCH q1 INTO v_qty; CLOSE q1; if v_qty > 0 then update plt_result set qty = 'v_qty' where plt_no = v_plt_no; end if; end; 表示文件丢失。

首先,对RMAN执行ORA-19505: failed to identify file <file>。然后重试。

答案 1 :(得分:0)

  1. RMAN-03009和ORA-17628 当在同一位置进行了先前的重复操作并且某些数据文件仍然保留时,您将看到此错误。

    解决方案:从“ AUXILIARY服务器”中删除命名文件,然后重试重复文件

  2. ORA-19505 当未指定db_file_name_convert且controlfile位置错误时,将看到此错误。请指定正确的路径。