[天羽]差點丟失資料的一次RMAN恢復
事件經過
we preform. a successful backup and tried to restore on another server,seq 35333 is the first archive log when we perform. backup,and 35334 is the last archivelog. after the backup successful,I runed “alter system archivelog current” from plsql and shutdown the datbase,so it comes an archive log 35335.we successful run ” restore database” with no error,then it occres the errors below when run “recover database”
Oracle Error: ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below ORA-01152: file 1 was not restored from a sufficiently old backup ORA-01110: data file 1: '/u01/oracle/oradata/dbc/data1/system01.dbf' RMAN-00571: =============================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS RMAN-00571: ================================================= RMAN-03002: failure of recover command at 04/02/2009 06:18:16 RMAN-06053: unable to perform. media recovery because of missing log RMAN-03002: failure of recover command at 04/02/2009 06:18:16 RMAN-06053: unable to perform. media recovery because of missing log RMAN-06025: no backup of log thread 1 seq 35332 lowscn 6103122088730 found to restore RMAN-06025: no backup of log thread 1 seq 35331 lowscn 6103119560491 found to restore .....many more old logs required
嘗試restore歸檔回來
restore archivelog from logseq 35279 until logseq 35332; it says mismatch logs list backup find the archivelogs backup below avaible: -rw-r----- 1 oracle oinstall 2465792 Apr 1 21:15 vckbdj6g_1_1_22508.arc -rw-r----- 1 oracle oinstall 26793472 Apr 1 22:51 vskbdoqh_1_1_22524.arc
resoter archivelog all and failed.
use the comand and succefull restore the archivelog
DECLARE devtype varchar2(256); done boolean; BEGIN devtype:=sys.dbms_backup_restore.deviceAllocate(type=>'',ident=>'T1'); sys.dbms_backup_restore.restoreSetArchivedLog; sys.dbms_backup_restore.restoreArchivedLogRange; sys.dbms_backup_restore.restoreBackupPiece(done=>done,handle=>'/nasbak_dbc/rman/dev_dbc.dev-dbc/vskbdoqh_1_1_22524.arc',params=>null); sys.dbms_backup_restore.deviceDeallocate; END; /
開始恢復歸檔
recover database using backup controlfile ; it required 35334,type auto it required 35335,copy my manul back archivelog 35335 to the directory and type auto it required 35556, type cancel; open resetlogs reported: ORA-01152: file 1 was not restored from a sufficiently old backup ORA-01110: data file 1: '/u01/oracle/oradata/dbc/data1/system01.dbf'
we thought something wrong with the controlfile so we backup controlfile to trace and created the new controlfile,
open reset logs ,and the same error occured again.
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data file 1: ‘/u01/oracle/oradata/dbc/data1/system01.dbf’
歸檔都應用了,為什麼就是打不開,重建控制檔案也不行。
we tried on a new mechine and try to restore also occure the error.
at last ,we use
_allow_terminal_recovery_corruption _allow_resetlogs_corruption on the pfile and succefully open the database.
事後跟蹤原因,先將原備份在另一臺機器恢復回來。
1、看看所有檔案的check_time
SQL> select file#,substr(name,1,50), substr(recover,1,1) R, substr(fuzzy,1,1) F, 2 to_char(checkpoint_time,'dd/mm/yyyy:hh24:mi:ss') ckpt_time, 3 checkpoint_change#, resetlogs_change#, 4 to_char(resetlogs_time,'dd/mm/yyyy HH24:MI:SS') tm from v$datafile_header; 71 /u01/oracle/oradata/dbc/data1/test__1.dbf N 30/03/2009:21:28:44 6102273276922 21739661701 01/12/2005 11:35:45 72 /u01/oracle/oradata/dbc/data1/tbs_03.dbf Y 09/08/2006:16:26:47 42315919273 21739661701 01/12/2005 11:35:45 73 /u01/oracle/oradata/dbc/data1/tbs__2.dbf N 30/03/2009:21:28:44 6102273276922 21739661701 01/12/2005 11:35:45 76 /u01/oracle/oradata/dbc/data2/tbs__12.dbf N 30/03/2009:21:28:44 6102273276922 21739661701
2、看看status
select file#,substr(name, 1, 50), status,enabled,to_char(creation_time,'dd/mm/yyyy:hh24:mi:ss') from v$datafile; /u01/oracle/oradata/dbc/data2/tbs__11.dbf ONLINE READ WRITE 11/05/2006:09:45:51 71 /u01/oracle/oradata/dbc/data1/test_1.dbf ONLINE READ WRITE 22/07/2006:11:02:56 72 /u01/oracle/oradata/dbc/data1/tbs_03.dbf RECOVER READ WRITE 09/08/2006:16:26:46 73 /u01/oracle/oradata/dbc/data1/tbs__2.dbf ONLINE READ WRITE 11/09/2006:17:50:43 76 /u01/oracle/oradata/dbc/data2/tbs__12.dbf ONLINE READ WRITE 08/12/2006:09:36:08
資料檔案 72是recover狀態並且SCN值不對
You need to choose from any of the following options :
1. You need to recover this datafile till current time and bring it online and then database can be opened successfully
2. Take this datafile offline drop, open up the database and then drop the tablespace which contains this datafile. You can choose to export the data from other datafiles of the tablespace.
SQL> alter database datafile 72 offline drop; Database altered. SQL> alter database open resetlogs; alter database open resetlogs * ERROR at line 1: ORA-01113: file 1 needs media recovery ORA-01110: data file 1: '/u01/oracle/oradata/dbc/data1/system01.dbf' SQL> recover database using backup controlfile until cancel; 如果只是用recover database using backup controlfile,還是會出現同樣的錯打不開的。 ORA-00279: change 6102273276922 generated at 03/30/2009 21:28:44 needed for thread 1 ORA-00289: suggestion : /u01/oracle/oradata/dbc/data4/arch/1_35297.arc ORA-00280: change 6102273276922 for thread 1 is in sequence #35297 Specify log: {=suggested | filename | AUTO | CANCEL} CANCEL Media recovery cancelled. SQL> alter database open resetlogs; * ERROR at line 1: ORA-01092: ORACLE instance terminated. Disconnection forced 這裡是因為我用10.2.0.4的資料庫去開啟9.2.0.6的DB。SQL> exit Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options [oracle@dev_dbc oracle]$ dbasql -bash: dbasql: command not found [oracle@dev_dbc oracle]$ sqlplus ” / as sysdba” SQL*Plus: Release 10.2.0.4.0 - Production on Fri Apr 10 13:30:25 2009 Copyright (c) 1982, 2007, Oracle. All Rights Reserved. Connected to an idle instance. SQL> startup upgrade pfile=’/home/oracle/init.ora’; ORACLE instance started. Total System Global Area 2785017856 bytes Fixed Size 1265888 bytes Variable Size 310644512 bytes Database Buffers 2457600000 bytes Redo Buffers 15507456 bytes Database mounted. Database opened.
總結:事實上操作時我們懷疑過備份集有問題,還拿更老的備份集來做恢復(事後也是拿這份做的恢復測試),結果還是報system表空間資料檔案的錯。有時候報的錯不是主要的,資料庫報錯時處於什麼樣的狀態更值得關注。此備份的datafile 72,在備份之前應該就是offline的,所以恢復時無法應用到最新的SCN。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1384/viewspace-611259/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 差點丟失資料的RMAN 恢復,最後用隱藏引數開啟
- RMAN恢復案例:丟失全部資料檔案恢復
- RMAN完全恢復丟失的資料檔案
- RMAN恢復案例:丟失非系統資料檔案恢復
- rman恢復--歸檔模式有備份,丟失資料檔案的恢復模式
- rman恢復--歸檔模式無備份,丟失資料檔案的恢復模式
- 控制檔案丟失的RMAN恢復
- 利用rman做資料檔案丟失的恢復實驗
- rman 恢復---歸檔丟失and資料檔案損壞
- oracle rman之丟失spfile恢復Oracle
- rman恢復--丟失聯機重做日誌的恢復
- RMAN_部分資料檔案丟失或者損壞的恢復
- 資料檔案丟失的恢復
- 硬碟資料丟失如何恢復?硬碟
- 分割槽丟失資料恢復資料恢復
- RMAN資料庫恢復 之歸檔模式有(無)備份-丟失資料檔案的恢復資料庫模式
- chkdsk 後資料丟失的恢復方法
- 【RMAN】SYSTEM表空間資料檔案丟失恢復模擬
- 探索ORACLE之RMAN_07 磁碟損壞資料丟失恢復Oracle
- 記一次oracle資料庫redolog全部丟失的恢復Oracle資料庫
- 伺服器資料丟失了怎麼恢復/分割槽丟失恢復教程伺服器
- 資料檔案丟失如何恢復
- 資料庫所有檔案丟失後透過RMAN實現恢復資料庫
- Oracle備份與恢復【丟失資料檔案的恢復】Oracle
- 普通資料檔案丟失的恢復方法
- 恢復REDO Log丟失的Oracle資料庫Oracle資料庫
- 資料檔案丟失損壞的恢復--
- RMAN恢復案例:無恢復目錄,丟失全部資料檔案、控制檔案、日誌檔案恢復
- 如何恢復伺服器資料丟失伺服器
- 電腦檔案丟失資料恢復資料恢復
- OMV資料恢復NAS陣列丟失資料恢復陣列
- 只有rman備份集,控制檔案丟失的恢復
- RMAN_資料庫的絕大部分資料檔案丟失或者損壞的恢復資料庫
- oracle 線上日誌全部丟失的資料恢復Oracle資料恢復
- 伺服器資料恢復案例之RAID資訊丟失資料恢復伺服器資料恢復AI
- 【資料庫資料恢復】Sql Server資料庫檔案丟失的資料恢復過程資料庫資料恢復SQLServer
- rman恢復--丟失控制檔案的恢復
- dg丟失歸檔,使用rman增量備份恢復