oracle增量和全量备份方案

目录
  • oracle生产备份方案
    • crontab 配置
    • rman_backup_0.sh
    • rman_backup_1.sh

oracle生产备份方案

crontab 配置

周末全量备份,其他日期增量备份,清除15天以前文件

0 5 * * * find /app/oracle11g/product/11.2.0/archdir/ecudb/* -mtime +6 |xargs  rm -fr

#rmanbackup
30 4 * * 6  sh /backup/feikong/scripts/rman_backup_0.sh
30 4 * * 0,1,2,3,4,5  sh /backup/feikong/scripts/rman_backup_1.sh
30 4 * * * find /backup/data -ctime +15 -type f |grep -E "DB_0|DB_1|arch_" |xargs -L 1 rm -rf

rman_backup_0.sh

#!/bin/bash
source ~/.bash_profile
rq=`date +%Y%m%d`
rman target / log /backup/log/rmanbackup_${rq}.log append<

rman_backup_1.sh

#!/bin/bash
source ~/.bash_profile
rq=`date +%Y%m%d`
rman target / log /backup/log/rmanbackup_${rq}.log append<

你可能感兴趣的:(oracle增量和全量备份方案)