Oracle DataGuard歸檔日誌丟失處理方法
問題描述
9.3日dg備庫異常關閉,9.17日主庫磁碟空間滿,刪除了歸檔日誌,導致備庫丟失了9.3號到9.17號得歸檔日誌,所以當9.24日啟動備庫時報錯
ORA-10458: standby database requires recovery
ORA-01196: file 1 is inconsistent due to a failed media recovery session
ORA-01110: data file 1: '/u01/oracle/oradata/system/system01.dbf'
解決辦法:
1、在主庫備份控制檔案
backup current controlfile for standby format '/archivelog/0924_ctl_%U.bka'
2、已備庫得最大SCN號在主庫備份
在備庫上執行
select name,to_char(checkpoint_change#) from v$datafile order by checkpoint_change#;
NAME TO_CHAR(CHECKPOINT_CHANGE#)
----------------------------------------------------------------------------------------------------------------
/u01/app/oracle/oradata/TBSP_STAT_DATA_202009_01.dbf 446416908432
3、在主庫上執行備份語句
rman target /
run
{
allocate channel c1 device type disk;
allocate channel c2 device type disk;
allocate channel c3 device type disk;
allocate channel c4 device type disk;
allocate channel c5 device type disk;
backup as compressed backupset incremental from scn 446416908432 database format '/archivelog/0924_%U.bka' tag 'forstandby';
release channel c1;
release channel c2;
release channel c3;
release channel c4;
release channel c5;
}
4、把生成得備份檔案都傳到備庫上
scp 0924* x.x.x.x:/tmp/
5、
這時候我們需要關閉備庫,然把把例項啟動到nomount關態
STANDBY> shutdown immediate;
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
STANDBY> startup nomount;
ORACLE instance started.
Total System Global Area 1224736768 bytes
Fixed Size 2923824 bytes
Variable Size 939524816 bytes
Database Buffers 268435456 bytes
Redo Buffers 13852672 bytes
6、在備庫上執行restore,先恢復控制檔案,在恢復資料檔案
rman target / nocatalog
RMAN> restore standby controlfile from '/tmp/0924_ctl_0rr22q7u_1_1.dbf';
Starting restore at 03-APR-16
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=23 device type=DISK
............................................
很快控制檔案就了恢復完成了,我們開啟另一個視窗,通過sqlplus把備庫以standby的方式mount起來
STANDBY> alter database mount;
恢復資料檔案
先註冊一下備份檔案
rman> catalog start with '/tmp';
開始恢復
run
{
allocate channel c1 device type disk;
allocate channel c2 device type disk;
allocate channel c3 device type disk;
allocate channel c4 device type disk;
allocate channel c5 device type disk;
recover database;
release channel c1;
release channel c2;
release channel c3;
release channel c4;
release channel c5;
}
7、啟動備庫同步
SQL> alter database open read only;
Database altered.
SQL> alter database recover managed standby database disconnect from session using current logfile;
Database altered.
select process,client_process,sequence#,status from v$managed_standby;
PROCESS CLIENT_P SEQUENCE# STATUS
--------- -------- ---------- ------------
ARCH ARCH 0 CONNECTED
ARCH ARCH 0 CONNECTED
ARCH ARCH 0 CONNECTED
ARCH ARCH 0 CONNECTED
ARCH ARCH 0 CONNECTED
RFS ARCH 0 IDLE
RFS LGWR 33 IDLE
MRP0 N/A 33 WAIT_FOR_LOG
現在我們檢視備庫狀態,MRP程式已經開始最新的日誌應用了.到此我們通過增量SCN備份和恢復來修復
備庫歸檔日誌丟失的過程已經全部完成了.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30166976/viewspace-2724007/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使用RMAN增量備份處理Dataguard因歸檔丟失造成的gap
- OGG整合抽取模式丟失歸檔處理模式
- ORACLE 11G DATAGUARD 日誌中斷處理方案Oracle
- oracle歸檔日誌Oracle
- DATAGUARD中手工處理日誌GAP
- 歸檔oracle alert日誌Oracle
- Oracle歸檔日誌清理Oracle
- 【Oracle】歸檔日誌管理-設定歸檔日誌路徑以及歸檔日誌冗餘Oracle
- oracle中undo表空間丟失處理方法Oracle
- 測試在丟失歸檔日誌的情況下,跳過部分歸檔日誌進行資料恢復資料恢復
- oracle丟失的是所有的redo日誌組Oracle
- Oracle歸檔檔案丟失導致OGG不用啟動Oracle
- oracle11G歸檔日誌管理Oracle
- 【REDO】Oracle 日誌挖掘,分析歸檔日誌線上日誌主要步驟Oracle
- oracle dg 歸檔日誌恢復情況Oracle
- oracle 刪除過期的歸檔日誌Oracle
- 【SQL】Oracle 歸檔日誌暴增原因分析SQLOracle
- Oracle歸檔日誌暴增排查優化Oracle優化
- RMAN-ERROR:因為找不到過期和丟失的歸檔日誌而備份失敗Error
- oracle rman備份歸檔日誌需要先切換日誌嗎Oracle
- oracle資料庫歸檔日誌量陡增分析Oracle資料庫
- 【DATAGUARD】Oracle 通過Dataguard指定恢復時間用於找回丟失資料Oracle
- 歸檔日誌挖掘
- PostgreSQL 歸檔日誌SQL
- Oracle 11.2.0.4 Dataguard兩則故障處理Oracle
- Oracle使用備份檔案集恢復歸檔日誌Oracle
- 在Oracle中,如何定時刪除歸檔日誌檔案?Oracle
- RMAN刪除歸檔日誌出現RMAN-0813錯誤的處理
- 14. 日誌歸檔
- oracle10g DataGuard的日誌傳輸方式Oracle
- Oracle dg歸檔同步失敗Oracle
- Oracle impdp遷移資料後主鍵丟失故障處理Oracle
- Oracle+Ogg 歸檔丟失 重新導資料建立ogg同步步驟Oracle
- 手工rm刪除歸檔日誌對備份歸檔日誌的影響
- Oralce資料庫關閉歸檔日誌並且刪除歸檔日誌資料庫
- 【BBED】丟失歸檔檔案情況下的恢復
- Oracle設定多個歸檔路徑生成多份歸檔日誌,Rman備份時也只備份其中的一份歸檔日誌Oracle
- 批量註冊歸檔日誌