RMAN恢復控制檔案

hooca發表於2016-04-06

方法 備註
只使用控制檔案(有FRA) 1 autobackup
使用恢復目錄 2 autobackup
只是用控制檔案(無FRA) 3 autobackup

0. 控制檔案一般有映象,詳見引數control_files,可直接複製來恢復,然後正常啟動資料庫

1. 只要使用了FRA,並將autobackup設定在FRA下,RMAN能夠自動找到autobackup備份的路徑,無需加from <備份片路徑>子句。

點選(此處)摺疊或開啟

  1. run {
  2. startup nomount;
  3. restore controlfile from autobackup;
  4. alter database mount;
  5. recover database;
  6. alter database open resetlogs;
  7. }
2.如果使用了恢復目錄,那麼就不需要加from autobackup了。

點選(此處)摺疊或開啟

  1. run {
  2. startup nomount;
  3. restore controlfile;
  4. alter database mount;
  5. recover database;
  6. alter database open resetlogs;
  7. }
3. 只能使用from <備份片路徑>指定從哪裡恢復控制檔案。

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

相關文章