沒有自動備份的情況下控制檔案全部丟失的恢復

jane_pop發表於2014-08-18
報錯資訊:
SQL> startup
ORACLE instance started.

Total System Global Area  849530880 bytes
Fixed Size                  1339824 bytes
Variable Size             515903056 bytes
Database Buffers          327155712 bytes
Redo Buffers                5132288 bytes
ORA-00205: error in identifying control file, check alert log for more info

檢視警報日誌檔案:
ALTER DATABASE   MOUNT
ORA-00210: cannot open the specified control file
ORA-00202: control file: '/u01/app/oracle/flash_recovery_area/orcl/control02.ctl'
ORA-27037: unable to obtain file status
Linux Error: 2: No such file or directory
Additional information: 3
ORA-00210: cannot open the specified control file
ORA-00202: control file: '/u01/app/oracle/oradata/orcl/control01.ctl'
ORA-27037: unable to obtain file status
Linux Error: 2: No such file or directory
Additional information: 3
ORA-205 signalled during: ALTER DATABASE   MOUNT...
錯誤顯示丟失了control01.ctl 和control02.ctl

檢視引數control_files的值:
SQL> show parameter control_files
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
control_files                        string      /u01/app/oracle/oradata/orcl/c
                                                 ontrol01.ctl, /u01/app/oracle/
                                                 flash_recovery_area/orcl/contr
                                                 ol02.ctl
由此可知資料庫中的所有控制檔案全部丟失。
而在rman中是沒有開啟configure controlfile autobackup on;的。於是我們只能透過重建控制檔案來恢復資料庫了。
由於資料庫缺失控制檔案無法mount,所以不能使用alter database backup controlfile to trace獲取控制檔案指令碼。
但是我們可以找到oracle的建庫指令碼,依據實際情況自己建立一個重建控制檔案的指令碼。
指令碼createcontrol.sql內容如下:
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE SET  DATABASE "ORCL" 
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
   DATAFILE 
   '/u01/app/oracle/oradata/orcl/system01.dbf',
   '/u01/app/oracle/oradata/orcl/sysaux01.dbf',
   '/u01/app/oracle/oradata/orcl/undotbs01.dbf',
   '/u01/app/oracle/oradata/orcl/users01.dbf',
   '/u01/app/oracle/oradata/orcl/test01.dbf'
   LOGFILE GROUP 1 ('/u01/app/oracle/oradata/orcl/redo01.log') SIZE 51200K,
   GROUP 2 ('/u01/app/oracle/oradata/orcl/redo02.log') SIZE 51200K,
   GROUP 3 ('/u01/app/oracle/oradata/orcl/redo03.log') SIZE 51200K RESETLOGS;

執行指令碼:
SQL> @createcontrol.sql
ORACLE instance started.

Total System Global Area  849530880 bytes
Fixed Size                  1339824 bytes
Variable Size             515903056 bytes
Database Buffers          327155712 bytes
Redo Buffers                5132288 bytes

Control file created.

開啟資料庫:
SQL> alter database open resetlogs;

Database altered.



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

相關文章