程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> 使用Oracle RMAN來進行基於表空間的恢復

使用Oracle RMAN來進行基於表空間的恢復

編輯:Oracle數據庫基礎

以下的文章主要是對如何正確的使用Oracle RMAN來進行基於相關表空間的恢復做一詳細介紹,我們通過示范案例來對Oracle RMAN來進行基於相關表空間的恢復進行說明,以下就是相關內容的描述,僅供參考:

1.察看備份文件

復制代碼$ rman target /

  1. Recovery Manager: Release 10.1.0.2.0 - 64bit Production  
  2.  
  3. Copyright (c) 1995, 2004, Oracle. All rights reserved.  
  4.  
  5. connected to target database: EYGLE (DBID=1337390772)  
  6.  
  7. RMAN> list backup of datafile 1;  
  8. List of Backup Sets 
  9. ===================  
  10. BS Key Type LV Size Device Type Elapsed Time Completion Time  
  11. ------- ---- -- ---------- ----------- ------------ ---------------  
  12. 17 Full 131M DISK 00:01:50 29-MAR-05  
  13. BP Key: 17 Status: AVAILABLE Compressed: NO Tag: TAG20050329T065513  
  14. PIEce Name: /data5/Flash_recovery_area/EYGLE/backupset/  
  15. 2005_03_29/o1_mf_nnndf_TAG20050329T065513_14k2tmx7_.bkp  
  16. List of Datafiles in backup set 17  
  17. File LV Type Ckp SCN Ckp Time Name  
  18. ---- -- ---- ---------- --------- ----  

1 Full 10605717 29-MAR-05 /opt/Oracle/oradata/eygle/system01.dbf
2.mount數據庫

復制代碼

  1. Oracle RMAN> startup mount;  
  2. connected to target database (not started)  
  3. Oracle instance started  
  4. database mounted  
  5. Total System Global Area 314572800 bytes  
  6. Fixed Size 1301704 bytes  
  7. Variable Size 261890872 bytes  
  8. Database Buffers 50331648 bytes  
  9. Redo Buffers 1048576 bytes 

3.恢復數據文件

復制代碼Oracle RMAN> restore datafile 1;
 

  1. Starting restore at 30-MAR-05  
  2. allocated channel: ORA_DISK_1  
  3. channel ORA_DISK_1: sid=160 devtype=DISK 
  4. channel ORA_DISK_1: starting datafile backupset restore  
  5. channel ORA_DISK_1: specifying datafile(s) to restore from backup set  
  6. restoring datafile 00001 to /opt/Oracle/oradata/eygle/system01.dbf  
  7. channel ORA_DISK_1: restored backup pIEce 1  
  8. pIEce handle=/data5/Flash_recovery_area/EYGLE/backupset/2005_03_29/  
  9. o1_mf_nnndf_TAG20050329T065513_14k2tmx7_.bkp tag=TAG20050329T065513 
  10. channel ORA_DISK_1: restore complete  
  11. Finished restore at 30-MAR-05 


上述的相關內容就是對使用Oracle RMAN進行基於表空間的恢復的描述,希望會給你帶來一些幫助在此方面。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved