新网创想网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

ORACLE-RMAN:备份脚本(全库,增量)

1.全库备份:

成都创新互联公司专注于辉南企业网站建设,成都响应式网站建设公司,商城网站建设。辉南网站建设公司,为辉南等地区提供建站服务。全流程按需求定制设计,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务

# script:BackupFull.sh

# creater:yangyuefei

# date:2014/5/14

# desc:backup full database datafile in archive with rman

# connect database

export ORACLE_BASE=/u01/oracle

export ORACLE_HOME=$ORACLE_BASE/product/10.2.0

export ORACLE_SID=ora10g

export PATH=$ORACLE_HOME/bin:${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin

rman target/ << EOF_RMAN

run{

allocate channel c1 type disk;

backup incremental level 0 tag 'db0' format

'/u01/oracle/RmanBackup/db0_%d_%T_%s'database include current

controlfile;

delete noprompt obsolete;

release channel c1;

}

# end

2.增量备份

# script:Incrl.sh

# creater:yangyuefei

# date:2014/5/14

# desc:backup full database datafile in archive with rman

# connect database

export ORACLE_BASE=/u01/oracle

export ORACLE_HOME=$ORACLE_BASE/product/10.2.0

export ORACLE_SID=ora10g

export PATH=$ORACLE_HOME/bin:${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin

rman target/ << EOF_RMAN

run{

allocate channel c1 type disk;

backup incremental level 1 tag 'db1' format

'/u01/oracle/RmanBackup/db1_%d_%T_%s'database include current

controlfile;

delete noprompt obsolete;

release channel c1;

}

# end


分享名称:ORACLE-RMAN:备份脚本(全库,增量)
本文网址:http://www.wjwzjz.com/article/ipseog.html
在线咨询
服务热线
服务热线:028-86922220
TOP