美文网首页数据库
rman累积增量备份脚本

rman累积增量备份脚本

作者: 与狼共舞666 | 来源:发表于2022-04-23 13:40 被阅读0次
run {
allocate channel ch1 device type disk;
allocate channel ch2 device type disk;
sql'alter system switch logfile';
crosscheck archivelog all;
delete noprompt expired archivelog all;
backup as compressed backupset incremental level 1 cumulative database format '/backup/ORCL/%d_%s' include current controlfile;     
delete noprompt obsolete recovery window 7days;
release channel ch1;
release channel ch2;
}

相关文章

网友评论

    本文标题:rman累积增量备份脚本

    本文链接:https://www.haomeiwen.com/subject/hodaertx.html