且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

12c RMAN备份脚本,ORA-00245

更新时间:2022-05-18 20:51:45

12c rac

报错如下:

channel d3: backup set complete, elapsed time: 00:00:08
RMAN-03009: failure of backup command on d4 channel at 12/07/2017 15:08:46
ORA-00245: control file backup failed; in Oracle RAC, target might not be on shared storage
continuing other job steps, job failed will not be re-run
channel d2: finished piece 1 at 07-DEC-2017 15:09:41
piece handle=/u01/bak/db_fullbk_2_1_962118518.rmn tag=BACKUP_FULL comment=NONE
channel d2: backup set complete, elapsed time: 00:01:04
channel d1: finished piece 1 at 07-DEC-2017 15:10:02
piece handle=/u01/bak/db_fullbk_1_1_962118518.rmn tag=BACKUP_FULL comment=NONE
channel d1: backup set complete, elapsed time: 00:01:24
released channel: d1
released channel: d2
released channel: d3
released channel: d4
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================

RMAN-03009: failure of backup command on d4 channel at 12/07/2017 15:08:46
ORA-00245: control file backup failed; in Oracle RAC, target might not be on shared storage

解决:

CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+datadg/snapcf_orcl1.f';

奉上一个备份脚本仅供参考

#!/bin/sh
#backup full  database and archivelog
#filename:/home/oracle/rk_rman.sh
#oracle user execute:sh /home/oracle/rk_rman.sh >./backup.log 2>&1 &
#authored by:roidba
####export ORACLE_SID=xxxx
rman target / <<EOF
run { 
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE BACKUP OPTIMIZATION ON;
CONFIGURE SNAPSHOT CONTROLFILE NAME TO '+datadg/snapcf_orcl1.f';
allocate channel d1 type disk;
allocate channel d2 type disk;
allocate channel d3 type disk;
allocate channel d4 type disk;
backup as compressed backupset database format '/u01/bak/db_fullbk_%s_%p_%t.rmn' tag='backup_full' include current controlfile;
backup as compressed backupset archivelog from time 'sysdate - 1/12' format '/u01/bak/archive_%s_%p_%t.arc';
backup current controlfile tag='backup_contorlfile' format='/u01/bak/ctl_%s_%p_%t';
backup spfile tag='backup_spfile' format='/u01/bak/spfile_%s_%p_%t';
release channel d2;
release channel d1;
release channel d3;
release channel d4;
}
exit;
EOF









本文转自 roidba 51CTO博客,原文链接:http://blog.51cto.com/roidba/2048381,如需转载请自行联系原作者