Oracle恢複實驗一:使用添加資料檔案之前的控制檔案

來源:互聯網
上載者:User
oracle|恢複|控制|資料
---------------------------------------------



實驗平台:windows + Oracle 10.1.0.2.0



Author:NinGoo  2005-03-26



--------------------------------------------




 


在備份控制檔案之後,在資料庫中又添加了資料檔案,然後當前控制檔案損壞,需要使用之前的備份控制檔案來做恢複。




 


1.備份控制檔案




 


SQL> alter database backup controlfile to 'e:\control.ctl';




 


資料庫已更改。




 


2.使用create tablespace或者alter tablespace add datafile給資料庫添加資料檔案




 


SQL> create tablespace test



  2  datafile 'E:\ORACLE\ORADATA\NING\TEST01.DBF' size 10M,



  3  'E:\ORACLE\ORADATA\NING\TEST02.DBF' size 10M;




 


資料表空間已建立。




 


3.shutdown後將現在的控制檔案刪除




 


4.startup資料庫




 


報錯:ORA-00205: error in identifying controlfile, check alert log for more info




 


5.將備份的控制檔案restore




 


6.使用備份控制檔案做恢複




 


SQL> recover database using backup controlfile;




 


ORA-00283: 恢複會話因錯誤而取消



ORA-01244: 未命名的資料檔案由介質恢複添加至控制檔案



ORA-01110: 資料檔案 5: 'E:\ORACLE\ORADATA\NING\TEST01.DBF'



ORA-01110: 資料檔案 6: 'E:\ORACLE\ORADATA\NING\TEST02.DBF'




 


此時,查看v$datafile可以看到有兩個unname檔案



SQL> select name from v$datafile;




 


NAME



-------------------------------------------




 


E:\ORACLE\ORADATA\NING YSTEM01.DBF



E:\ORACLE\ORADATA\NING\UNDOTBS01.DBF



E:\ORACLE\ORADATA\NING YSAUX01.DBF



E:\ORACLE\ORADATA\NING\USERS01.DBF



C:\WINDOWS YSTEM32\UNNAMED00005



C:\WINDOWS YSTEM32\UNNAMED00006




 


查看alert_sid.log,可以看到如下內容




 


File #5 added to control file as 'UNNAMED00005'. Originally created as:



'E:\ORACLE\ORADATA\NING\TEST01.DBF'



File #6 added to control file as 'UNNAMED00006'. Originally created as:



'E:\ORACLE\ORADATA\NING\TEST02.DBF'




 


可知UNNAMED00005對應'E:\ORACLE\ORADATA\NING\TEST01.DBF'



UNNAMED00006對應'E:\ORACLE\ORADATA\NING\TEST02.DBF'




 


7.重新命名資料檔案




 


SQL> alter database rename file 'C:\WINDOWS YSTEM32\UNNAMED00005' to



  2  'E:\ORACLE\ORADATA\NING\TEST01.DBF';




 


資料庫已更改。




 


SQL> alter database rename file 'C:\WINDOWS YSTEM32\UNNAMED00006' to



  2  'E:\ORACLE\ORADATA\NING\TEST02.DBF';




 


資料庫已更改。




 


8.再使用備份控制檔案恢複




 


SQL> recover database using backup controlfile;




 


完成介質恢複。




 


9.使用resetlogs選項開啟資料庫




 


SQL> alter database open;



alter database open



*



第 1 行出現錯誤:



ORA-01589: 要開啟資料庫則必須使用 RESETLOGS 或 NORESETLOGS 選項




 


SQL> alter database open noresetlogs;



alter database open noresetlogs



*



第 1 行出現錯誤:



ORA-01588: 要開啟資料庫則必須使用 RESETLOGS 選項




 


SQL> alter database open resetlogs;




 


資料庫已更改。




 


10.添加temp檔案




 


此時查看alert_sid.log,可以看到以下警告



***************************************************************



WARNING: The following temporary tablespaces contain no files.



         This condition can occur when a backup controlfile has



         been restored.  It may be necessary to add files to these



         tablespaces.  That can be done using the SQL statement:



 



         ALTER TABLESPACE <tablespace_name> ADD TEMPFILE



 



         Alternatively, if these temporary tablespaces are no longer



         needed, then they can be dropped.



           Empty temporary tablespace: TEMP



***************************************************************




 


使用備份控制檔案恢複後,Temp資料表空間被置空



SQL> select name from v$tempfile;




 


未選定行




 


SQL>alter tablespace temp add tempfile



2 'E:\ORACLE\ORADATA\NING\TEMP01.DBF';




 


資料表空間已更改。




 



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.