码迷,mamicode.com
首页 > 其他好文 > 详细

一个简单的RMAN自动备份脚本

时间:2015-10-21 09:22:42      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

rman备份脚本:

#!/bin/bash
source /home/oracle/.bash_profile

rman target / << EOF
run {
allocate channel ch1 type disk;
allocate channel ch2 type disk;
backup incremental level 0 database include current controlfile plus archivelog delete all input;
release channel ch1;
release channel ch2;
}
quit;
EOF

crontab设置自动任务:

$crontab -l

0 1 * * * /home/oracle/backup.sh >> /home/oracle/backup.log

 

一个简单的RMAN自动备份脚本

标签:

原文地址:http://www.cnblogs.com/wcwen1990/p/4896820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!