常用脚本: -----1. 0级备份 批处理文件: set Oracle_SID=orcl rman target sys/test@orcl cmdfile=
常用脚本:
-----1. 0级备份
批处理文件:
set oracle_sid=orcl
rman target sys/test@orcl cmdfile= 's:/backup/scripts/0/db_fullbakup_orcl.rman' log='s:/backup/log/rman_backup_%date:~0,4%%date:~5,2%%date:~8,2%.log'
rman脚本:
run {
configure retention policy to recovery window of 14 days;
configure controlfile autobackup on;
configure controlfile autobackup format for device type disk to 'S:\backup\controlfile\bak_%F';
allocate channel c1 device type disk format 'S:\backup\data\bak_%u';
allocate channel c2 device type disk format 'S:\backup\data\bak_%u';
backup incremental level=0 database skip inaccessible
plus archivelog filesperset 20
delete all input;
release channel c1;
release channel c2;
}
allocate channel for maintenance device type disk;
crosscheck backupset;
delete noprompt obsolete;
-----2. 1级备份
批处理文件:
set ORACLE_SID=orcl
rman target sys/test@orcl cmdfile='S:/backup/scripts/1/db_fullbakup_orcl.rman' LOG='S:/backup/log/rman_backup_%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%.log'
rman脚本:
run {
configure retention policy to recovery window of 14 days;
configure controlfile autobackup on;
configure controlfile autobackup format for device type disk to 'S:\backup\controlfile\bak_%F';
allocate channel c1 device type disk format 'S:\backup\data\bak_%u';
allocate channel c2 device type disk format 'S:\backup\data\bak_%u';
backup incremental level=1 cumulative database skip inaccessible
plus archivelog filesperset 20
delete all input;
release channel c1;
release channel c2;
}
allocate channel for maintenance device type disk;
crosscheck backupset;
delete noprompt obsolete;
部分功能简介:商品收藏夹功能热门商品最新商品分级价格功能自选风格打印结算页面内部短信箱商品评论增加上一商品,下一商品功能增强商家提示功能友情链接用户在线统计用户来访统计用户来访信息用户积分功能广告设置用户组分类邮件系统后台实现更新用户数据系统图片设置模板管理CSS风格管理申诉内容过滤功能用户注册过滤特征字符IP库管理及来访限制及管理压缩,恢复,备份数据库功能上传文件管理商品类别管理商品添加/修改/










