Oracle 11g 資料庫恢復-場景7:部分檔案損壞
場景7:部分檔案損壞(系統預設undo表空間資料檔案)恢復,OPEN狀態
NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ undo_tablespace string UNDOTBS1
sys@TESTDB11>select tablespace_name, contents from dba_tablespaces;
TABLESPACE_NAME CONTENTS ------------------------------ --------- SYSTEM PERMANENT SYSAUX PERMANENT UNDOTBS1 UNDO TEMP TEMPORARY USERS PERMANENT EXAMPLE PERMANENT ROTBS PERMANENT
7 rows selected.
--刪除資料檔案 sys@TESTDB11>!rm /u01/app/oracle/oradata/TestDB11/undotbs01.dbf
--確定undo表示空間資料檔案編號,為3號檔案 sys@TESTDB11>select file#, name from v$datafile;
FILE# NAME ---------- -------------------------------------------------- 1 /u01/app/oracle/oradata/TestDB11/system01.dbf 2 /u01/app/oracle/oradata/TestDB11/sysaux01.dbf 3 /u01/app/oracle/oradata/TestDB11/undotbs01.dbf 4 /u01/app/oracle/oradata/TestDB11/users01.dbf 5 /u01/app/oracle/oradata/TestDB11/example01.dbf 6 /u01/app/oracle/oradata/TestDB11/rotbs01.dbf
6 rows selected.
--不可以使undo表空間離線 sys@TESTDB11>alter database datafile 3 offline; alter database datafile 3 offline * ERROR at line 1: ORA-00603: ORACLE server session terminated by fatal error ORA-00376: file 3 cannot be read at this time ORA-01110: data file 3: '/u01/app/oracle/oradata/TestDB11/undotbs01.dbf' ORA-00376: file 3 cannot be read at this time ORA-01110: data file 3: '/u01/app/oracle/oradata/TestDB11/undotbs01.dbf' ORA-00376: file 3 cannot be read at this time ORA-01110: data file 3: '/u01/app/oracle/oradata/TestDB11/undotbs01.dbf' Process ID: 8003 Session ID: 1 Serial number: 5
--嘗試建立新的undo表空間,也不可以 sys@TESTDB11>create tablespace undotbs2 datafile '/u01/app/oracle/oradata/TestDB11/undotbs201.dbf' size 200m; ERROR: ORA-03114: not connected to ORACLE
sys@TESTDB11>conn / as sysdba Connected. sys@TESTDB11>create tablespace undotbs2 datafile '/u01/app/oracle/oradata/TestDB11/undotbs201.dbf' size 200m; create tablespace undotbs2 datafile '/u01/app/oracle/oradata/TestDB11/undotbs201.dbf' size 200m * ERROR at line 1: ORA-00604: error occurred at recursive SQL level 1 ORA-00376: file 3 cannot be read at this time ORA-01110: data file 3: '/u01/app/oracle/oradata/TestDB11/undotbs01.dbf'
-- 關庫,重新啟動到MOUNT狀態 sys@TESTDB11>startup mount force; ORACLE instance started.
Total System Global Area 855982080 bytes Fixed Size 2230792 bytes Variable Size 641730040 bytes Database Buffers 209715200 bytes Redo Buffers 2306048 bytes Database mounted. --還原 sys@TESTDB11>!cp /backup/inconsistent_backup/undotbs01.dbf /u01/app/oracle/oradata/TestDB11 --恢復 sys@TESTDB11>recover datafile 3; ORA-00279: change 2654893 generated at 08/09/2013 21:27:06 needed for thread 1 ORA-00289: suggestion : /archive2/1_98_813665348.dbf ORA-00280: change 2654893 for thread 1 is in sequence #98
Specify log: {<RET>=suggested | filename | AUTO | CANCEL} auto ORA-00279: change 2660981 generated at 08/09/2013 22:19:48 needed for thread 1 ORA-00289: suggestion : /archive2/1_99_813665348.dbf ORA-00280: change 2660981 for thread 1 is in sequence #99
ORA-00279: change 2667783 generated at 08/10/2013 00:00:55 needed for thread 1 ORA-00289: suggestion : /archive2/1_100_813665348.dbf ORA-00280: change 2667783 for thread 1 is in sequence #100
ORA-00279: change 2679804 generated at 08/10/2013 03:00:28 needed for thread 1 ORA-00289: suggestion : /archive2/1_101_813665348.dbf ORA-00280: change 2679804 for thread 1 is in sequence #101
ORA-00279: change 2699110 generated at 08/10/2013 08:29:58 needed for thread 1 ORA-00289: suggestion : /archive2/1_102_813665348.dbf ORA-00280: change 2699110 for thread 1 is in sequence #102
ORA-00279: change 2725650 generated at 08/10/2013 10:27:18 needed for thread 1 ORA-00289: suggestion : /archive2/1_103_813665348.dbf ORA-00280: change 2725650 for thread 1 is in sequence #103
ORA-00279: change 2726122 generated at 08/10/2013 10:29:03 needed for thread 1 ORA-00289: suggestion : /archive2/1_104_813665348.dbf ORA-00280: change 2726122 for thread 1 is in sequence #104
ORA-00279: change 2726220 generated at 08/10/2013 10:32:28 needed for thread 1 ORA-00289: suggestion : /archive2/1_105_813665348.dbf ORA-00280: change 2726220 for thread 1 is in sequence #105
Log applied. Media recovery complete. --開庫 sys@TESTDB11>alter database open;
Database altered.
--但此時undo表空間顯示為離線(因為剛才做了一下離線操作) sys@TESTDB11>select name, status from v$datafile;
NAME STATUS -------------------------------------------------- ------- /u01/app/oracle/oradata/TestDB11/system01.dbf SYSTEM /u01/app/oracle/oradata/TestDB11/sysaux01.dbf ONLINE /u01/app/oracle/oradata/TestDB11/undotbs01.dbf OFFLINE /u01/app/oracle/oradata/TestDB11/users01.dbf ONLINE /u01/app/oracle/oradata/TestDB11/example01.dbf ONLINE /u01/app/oracle/oradata/TestDB11/rotbs01.dbf ONLINE
6 rows selected.
--使其聯機 sys@TESTDB11>alter database datafile 3 online;
Database altered. |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17013648/viewspace-1151913/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 11g 資料庫恢復-場景5:部分檔案損壞恢復,開庫狀態,低可用恢復方式Oracle資料庫
- Oracle 11g 資料庫恢復-場景4:部分檔案損壞恢復,開庫狀態, 高可用恢復方式Oracle資料庫
- Oralce 11g資料庫恢復-場景3:部分檔案損壞恢復,關庫狀態,高可用恢復方式資料庫
- Oracle 11g RMAN恢復-場景1:所有的資料檔案損壞,資料庫CLOSEOracle資料庫
- Oracle 11g 資料庫恢復-場景2:所有據檔案損壞,關庫狀態Oracle資料庫
- Oracle 11g 資料庫恢復-場景1:所有的資料檔案損壞,OPEN狀態Oracle資料庫
- Oracle 11g RMAN恢復-場景2:所有的資料檔案損壞,OPEN狀態Oracle
- Oracle 11g資料庫恢復:場景11:資料檔案損壞,不能恢復到原來的位置, 恢復到新的路徑Oracle資料庫
- Oracle 11g 資料庫恢復:場景9-系統預設undo表空間資料檔案損壞Oracle資料庫
- [ORACLE] 系統故障資料庫恢復--資料檔案無損壞Oracle資料庫
- Oracle 11g 資料庫恢復-場景8:系統預設undo表空間資料檔案損壞,CLOSE狀態Oracle資料庫
- Oracle 11g RMAN恢復-場景3:非系統表空間資料檔案損壞,資料庫OPEN狀態,高可用Oracle資料庫
- 【資料庫資料恢復】MongoDB資料庫檔案損壞的資料恢復案例資料庫資料恢復MongoDB
- RMAN_部分資料檔案丟失或者損壞的恢復
- Oracle資料檔案損壞恢復例項二則Oracle
- Oracle資料庫UNDO損壞後的恢復Oracle資料庫
- 資料檔案丟失損壞的恢復--
- u盤檔案損壞怎麼恢復資料 u盤恢復損壞資料的有效方法
- RMAN_資料庫的絕大部分資料檔案丟失或者損壞的恢復資料庫
- Oracle資料庫恢復:歸檔日誌損壞案例一則Oracle資料庫
- rman 恢復---歸檔丟失and資料檔案損壞
- Oracle 11g 資料庫恢復:場景12續:將資料檔案恢復回原來正確的位置Oracle資料庫
- 某個資料檔案損壞完全恢復(三)
- 備份與恢復--重建控制檔案後資料檔案損壞的恢復
- u盤檔案損壞怎麼恢復資料 u盤損壞無法讀取怎麼恢復資料
- 資料庫檔案壞塊損壞導致開啟時報錯的恢復方法資料庫
- InterBase資料庫檔案損壞的修復方法資料庫
- Oracle不同檔案丟失/損壞的恢復方法Oracle
- 【資料庫資料恢復】Oracle資料庫檔案出現壞塊報錯的資料恢復案例資料庫資料恢復Oracle
- REDO日誌損壞,非歸檔模式資料檔案恢復模式
- 損壞控制檔案的恢復方法
- SQL Server ldf 檔案損壞恢復SQLServer
- Oracle資料庫不同損壞級別的恢復詳解Oracle資料庫
- 資料庫資料恢復—NTFS分割槽損壞如何恢復SqlServer資料庫資料資料庫資料恢復SQLServer
- 非系統資料檔案損壞,rman備份恢復
- 磁碟損壞導致資料檔案丟失的恢復
- 備份與恢復--資料檔案損壞或丟失
- master資料庫損壞之後的恢復AST資料庫