透過crontab更改DataGuard物理庫managed recover狀態

dbhelper發表於2014-11-27

透過crontab更改DataGuard物理庫managed recover狀態
在ORACLE 11g之前的版本中DataGuard物理庫通常在managed recover狀態是不能提供查詢的,如果想提供查詢,就必須
在open read only狀態.但是在open read only狀態下,是不可以再進行即時歸檔恢復的。
但是主庫依然可以將歸檔傳送到備用庫,通常BI系統對當天的統計並不是十分關注,所以可以把在備用機上的歸檔恢復放到晚上來做。

我們可以透過Liunx的crontab來完成。
可以在每天凌晨1:00開始在備用庫進行恢復,
然後在凌晨6:00鐘左右時,crontab程式再將managed recover取消,
把資料庫開啟到open read only狀態,
這樣就物理備用庫在安全性、高可用沒有降低的情況,可以提供一部分的報表業務,可以很大程度減輕主生產庫的壓力。

檢視crontab配置資訊:

[oracle@node1 ~]$ crontab -e

00 01 * * * /home/oracle/backup/work/shellrecovery.sh

00 06 * * * /home/oracle/backup/work/openreadonly.sh

歸檔恢復的指令碼:
[oracle@node1 ~]$ cat shellrecovery.sh

#!/bin/sh
source ~oracle/.bash_profile
$ORACLE_HOME/bin/sqlplus /nolog< connect / as sysdba;
alter database recover managed standby database disconnect from session;
exit
!

取消歸檔恢復,開啟資料庫到open read only狀態的指令碼:
[oracle@node1 ~]$ cat openreadonly.sh

#!/bin/sh
source ~oracle/.bash_profile
$ORACLE_HOME/bin/sqlplus /nolog< connect / as sysdba;
alter database recover managed standby database cancel;
alter database open read only;
exit
!

 




2014.08.14 17:49
share you knowledge with the world. 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8494287/viewspace-1349443/,如需轉載,請註明出處,否則將追究法律責任。

相關文章