使用RESETLOGS重建控制檔案恢復資料庫(二)
控制檔案丟失,但資料檔案及聯機日誌檔案還在,並且資料庫是正常關閉。
-- 模擬交易產生
22:20:46 SYS@wailon> select group#,sequence#,status from v$log;
GROUP# SEQUENCE# STATUS
---------- ---------- ----------------
1 1 CURRENT
3 0 UNUSED
2 0 UNUSED
22:21:23 SYS@wailon> create table scott.a3 as select * from scott.a;
Table created.
22:21:54 SYS@wailon> alter system switch logfile;
System altered.
22:22:01 SYS@wailon> insert into scott.a3 select * from scott.a3;
23 rows created.
22:22:51 SYS@wailon> commit;
Commit complete.
22:22:55 SYS@wailon> alter system switch logfile;
System altered.
-- 備份CONTROLFILE TO TRACE可以從裡面查到控制檔案的建立語句
22:23:15 SYS@wailon> alter database backup controlfile to trace;
Database altered.
22:23:31 SYS@wailon> select * from v$diag_info;
1 Default Trace File
/u01/app/oracle/diag/rdbms/wailon/wailon/trace/wailon_ora_20993.trc
22:23:38 SYS@wailon> host view /u01/app/oracle/diag/rdbms/wailon/wailon/trace/wailon_ora_20993.trc
-- 省略部分輸出
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "WAILON" RESETLOGS FORCE LOGGING ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
LOGFILE
GROUP 1 '/u01/app/oracle/oradata/wailon/redo01.log' SIZE 50M BLOCKSIZE 512,
GROUP 2 '/u01/app/oracle/oradata/wailon/redo02.log' SIZE 50M BLOCKSIZE 512,
GROUP 3 '/u01/app/oracle/oradata/wailon/redo03.log' SIZE 50M BLOCKSIZE 512
-- STANDBY LOGFILE
DATAFILE
'/u01/app/oracle/oradata/system01.dbf',
'/u01/app/oracle/oradata/sysaux01.dbf',
'/u01/app/oracle/oradata/undotbs01.dbf',
'/u01/app/oracle/oradata/users01.dbf',
'/u01/app/oracle/oradata/wailon/WAILON/datafile/o1_mf_wailon_94g6p2k8_.dbf'
CHARACTER SET ZHS16GBK
;
-- Commands to re-create incarnation table
-- Below log names MUST be changed to existing filenames on
-- disk. Any one log file from each branch can be used to
-- re-create incarnation records.
-- ALTER DATABASE REGISTER LOGFILE '/u01/app/oracle/flash_recovery_area/WAILON/archivelog/2013_09_29/o1_mf_1_1_%u_.arc';
-- ALTER DATABASE REGISTER LOGFILE '/u01/app/oracle/flash_recovery_area/WAILON/archivelog/2013_09_29/o1_mf_1_1_%u_.arc';
-- ALTER DATABASE REGISTER LOGFILE '/u01/app/oracle/flash_recovery_area/WAILON/archivelog/2013_09_29/o1_mf_1_1_%u_.arc';
-- Recovery is required if any of the datafiles are restored backups,
-- or if the last shutdown was not normal or immediate.
RECOVER DATABASE USING BACKUP CONTROLFILE
-- Database can now be opened zeroing the online logs.
ALTER DATABASE OPEN RESETLOGS;
-- No tempfile entries found to add.
--
22:24:23 SYS@wailon> select * from v$controlfile;
STATUS NAME IS_ BLOCK_SIZE FILE_SIZE_BLKS
------- --------------------------------------------- --- ---------- --------------
/u01/app/oracle/oradata/wailon/control01.ctl NO 16384 614
/u01/app/oracle/oradata/wailon/control02.ctl NO 16384 614
-- 正常關閉資料庫,刪除所有控制檔案
22:24:35 SYS@wailon> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
22:24:49 SYS@wailon> host rm /u01/app/oracle/oradata/wailon/control*.ctl
22:25:08 SYS@wailon> host ls /u01/app/oracle/oradata/wailon/control*.ctl
ls: cannot access /u01/app/oracle/oradata/wailon/control*.ctl: No such file or directory
-- 啟動資料庫到NOMOUNT狀態
22:25:16 SYS@wailon> startup nomount;
ORACLE instance started.
Total System Global Area 417546240 bytes
Fixed Size 2228944 bytes
Variable Size 360713520 bytes
Database Buffers 46137344 bytes
Redo Buffers 8466432 bytes
-- 使用RESETLOGS建立控制檔案
22:25:37 SYS@wailon> CREATE CONTROLFILE REUSE DATABASE "WAILON" RESETLOGS FORCE LOGGING ARCHIVELOG
22:25:41 2 MAXLOGFILES 16
22:25:41 3 MAXLOGMEMBERS 3
22:25:41 4 MAXDATAFILES 100
22:25:41 5 MAXINSTANCES 8
22:25:41 6 MAXLOGHISTORY 292
22:25:41 7 LOGFILE
22:25:41 8 GROUP 1 '/u01/app/oracle/oradata/wailon/redo01.log' SIZE 50M BLOCKSIZE 512,
22:25:41 9 GROUP 2 '/u01/app/oracle/oradata/wailon/redo02.log' SIZE 50M BLOCKSIZE 512,
GROUP 3 '/u01/app/oracle/oradata/wailon/redo03.log' SIZE 50M BLOCKSIZE 512
22:25:41 11 -- STANDBY LOGFILE
22:25:41 12 DATAFILE
22:25:41 13 '/u01/app/oracle/oradata/system01.dbf',
22:25:41 14 '/u01/app/oracle/oradata/sysaux01.dbf',
'/u01/app/oracle/oradata/undotbs01.dbf',
'/u01/app/oracle/oradata/users01.dbf',
'/u01/app/oracle/oradata/wailon/WAILON/datafile/o1_mf_wailon_94g6p2k8_.dbf'
22:25:41 18 CHARACTER SET ZHS16GBK
22:25:41 19 ;
Control file created.
-- 控制檔案建立成功後,直接使用RESETLOGS開啟資料庫;由於正常關閉資料庫,所以不需要recover
22:25:45 SYS@wailon> alter database open resetlogs;
Database altered.
22:26:06 SYS@wailon> select status from v$instance;
STATUS
------------
OPEN
-- 日誌序號從1開始編號
22:29:59 SYS@wailon> select group#,sequence#,status from v$Log;
GROUP# SEQUENCE# STATUS
---------- ---------- ----------------
1 1 CURRENT
3 0 UNUSED
2 0 UNUSED
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/429786/viewspace-777383/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Controlfile 重建控制檔案 noresetlogs, resetlogs..
- Oracle資料庫恢復之resetlogsOracle資料庫
- Oracle為什麼使用備份的控制檔案恢復後一定要resetlogsOracle
- 【資料庫資料恢復】透過恢復NDF檔案修復資料庫的資料恢復過程資料庫資料恢復
- 【資料庫資料恢復】MongoDB資料庫檔案損壞的資料恢復案例資料庫資料恢復MongoDB
- 與控制檔案有關的恢復(二)
- 【資料庫資料恢復】Sql Server資料庫檔案丟失的資料恢復過程資料庫資料恢復SQLServer
- 【資料庫資料恢復】EXT3檔案系統下MYSQL資料庫恢復案例資料庫資料恢復MySql
- 資料庫資料恢復-SQL SERVER資料庫檔案大小變為“0”的資料恢復方案資料庫資料恢復SQLServer
- SQL SEVER 缺少LOG檔案資料庫恢復SQL資料庫
- 資料庫資料恢復—MongoDB資料庫檔案丟失,啟動報錯的資料恢復案例資料庫資料恢復MongoDB
- 【資料庫資料恢復】Oracle資料庫檔案出現壞塊報錯的資料恢復案例資料庫資料恢復Oracle
- 【/proc/檔案淺析】另類辦法恢復資料檔案和控制檔案
- MSSQL資料庫資料恢復案例:ndf檔案大小變為0KB恢復資料SQL資料庫資料恢復
- 【資料庫資料恢復】mdb_catalog.wt檔案丟失的MongoDB資料恢復案例資料庫資料恢復MongoDB
- MongoDB資料庫報錯,資料庫檔案丟失資料恢復案例MongoDB資料庫資料恢復
- 伺服器資料恢復-ext3檔案系統下oracle資料庫資料恢復案例伺服器資料恢復Oracle資料庫
- Sql Server資料庫檔案丟失的恢復方法SQLServer資料庫
- 【資料庫資料恢復】SAP資料庫資料恢復案例資料庫資料恢復
- 寶塔資料庫恢復 mysql資料庫丟失恢復 mysql資料庫刪除庫恢復 寶塔mysql資料庫恢復資料庫MySql
- 【伺服器資料恢復】linux ext3檔案系統下mysql資料庫資料恢復案例伺服器資料恢復LinuxMySql資料庫
- 資料恢復新姿勢——通過ibd和frm檔案恢復資料資料恢復
- 【伺服器資料恢復】StorNext檔案系統資料恢復案例伺服器資料恢復
- 【資料庫資料恢復】Sql Server資料庫資料恢復案例資料庫資料恢復SQLServer
- Sqlserver系統資料庫和使用者資料庫日誌檔案全部丟失的恢復SQLServer資料庫
- 與控制檔案有關的恢復
- DATA GUARD主庫丟失資料檔案的恢復(3)
- DATA GUARD主庫丟失資料檔案的恢復(1)
- DATA GUARD主庫丟失資料檔案的恢復(2)
- 【分散式儲存資料恢復】hbase和hive資料庫底層檔案誤刪的資料恢復案例分散式資料恢復Hive資料庫
- 【RMAN】如果控制檔案損壞那麼如何恢復?恢復控制檔案的方式有哪幾種?
- 如何恢復在全備後新增了資料檔案的資料庫資料庫
- 【儲存資料恢復】WAFL檔案系統下raid資料恢復案例資料恢復AI
- oracle快速拿到重建控制檔案語句的方法二Oracle
- 資料庫修復資料恢復資料庫資料恢復
- 【資料庫資料恢復】LINUX EXT3檔案系統下ORACLE資料庫誤操作導致資料丟失的資料恢復案例資料庫資料恢復LinuxOracle
- 電腦檔案丟失資料恢復資料恢復
- 教你自動恢復MySQL資料庫的日誌檔案(binlog)MySql資料庫
- 【資料庫資料恢復】windows server下SqlServer資料庫的資料恢復資料庫資料恢復WindowsServerSQL