当前位置:网站首页>Dataguard 主备清理归档设置
Dataguard 主备清理归档设置
2022-07-07 21:53:00 【Joyce.Du】
cat /rmancc/shell/rmanlog.sh
#!/bin/sh
export ORACLE_SID=cc
rman target / <<EOF
run{
sql 'alter system archive log current' ;
backup format '/rmancc/%d_log_%T_%U' archivelog until time 'sysdate' delete all input ;
delete noprompt obsolete;
}
quit;
EOF
cat /rmancc/shell/rmanlog_clear.sh
#!/bin/sh
export ORACLE_SID=cc
rman target / <<EOF
run{
crosscheck archivelog all;
delete noprompt expired archivelog all;
delete noprompt archivelog until time 'sysdate';
}
quit;
EOF
PR端:
root crontab 清理archivelog部分:
0,30 * * * * su - oracle -c "/rmancc/shell/rmanlog.sh" 1>>/rmancc/shell/rmanlog.log 2>>/rmancc/shell/rmanlog.err
#0,30 * * * * su - oracle -c "/rmancc/shell/rmanlog_clear.sh" 1>>/rmancc/shell/rmanlog_clear.log 2>>/rmancc/shell/rmanlog_clear.err
DR端:
root crontab 清理archivelog部分:
#0,30 * * * * su - oracle -c "/rmancc/shell/rmanlog.sh" 1>>/rmancc/shell/rmanlog.log 2>>/rmancc/shell/rmanlog.err
0,30 * * * * su - oracle -c "/rmancc/shell/rmanlog_clear.sh" 1>>/rmancc/shell/rmanlog_clear.log 2>>/rmancc/shell/rmanlog_clear.err
当容灾切换时,需要将PR端的crontab转为DR端的crontab;
将DR端的crontab转为PR端的crontab;
回切后再恢复原来的crontab
注意:
(1)当dr的mrp进程没起,但是数据库起着(tnsname通),pr的归档会由pr的lns正常传输到dr,此时dr的归档删除的脚本无法删除没有应用的归档,报错如下:
RMAN-08137: warning: archived log not deleted, needed for standby or upstream capture process
所以dr的归档目录很容易满,一旦dr的归档目录满,就会导致pr无法继续传输归档,从而导致pr端的归档无法正常删除,删除的时候也会报RMAN-08137: warning: archived log not deleted, needed for standby or upstream capture process,最后导致pr归档满,引发故障;
(2)如果dr的监听异常,pr无法传输归档到dr,pr无法正常备份删除
边栏推荐
- How can we make money by making video clips from our media?
- Live-Server使用
- SAP HR 劳动合同信息 0016
- ASP. Net open web page
- Windows set redis to start automatically
- B_ QuRT_ User_ Guide(36)
- SRM supplier cloud collaborative management platform solution for building materials industry to realize business application scalability and configuration
- 2022 届的应届生都找到工作了吗?做自媒体可以吗?
- windows设置redis开启自动启动
- Anxin can internally test offline voice module vb-01 to communicate with esp-c3-12f
猜你喜欢
[experiment sharing] log in to Cisco devices through the console port
二叉排序树【BST】——创建、查找、删除、输出
平衡二叉樹【AVL樹】——插入、删除
Oracle database backup and recovery
建筑建材行业SRM供应商云协同管理平台解决方案,实现业务应用可扩展可配置
Ora-02437 failed to verify the primary key violation
B / Qurt Utilisateur Guide (36)
MySQL Index Optimization Practice I
C cat and dog
B_ QuRT_ User_ Guide(36)
随机推荐
C number of words, plus ¥, longest word, average value
Fibonacci number of dynamic programming
SAP HR 劳动合同信息 0016
StringUtils工具类
数据库面试题+解析
高效的S2B2C电商系统,是这样帮助电子材料企业提升应变能力的
Take you hand in hand to build Eureka client with idea
Windows set redis to start automatically
Right click the idea file to create new. There is no solution to create new servlet
Extended tree (I) - graphic analysis and C language implementation
B_ QuRT_ User_ Guide(36)
B_ QuRT_ User_ Guide(39)
New potential energy of industrial integration, Xiamen station of city chain technology digital summit successfully held
谷歌浏览器怎么登录及开启同步功能
0-1 knapsack problem
SAP HR 家庭成员信息
Markdown
Get started with mongodb
Deep understanding of MySQL lock and transaction isolation level
MySQL Index Optimization Practice II