DM7使用DMRMAN執行歸檔修復

eric0435發表於2021-01-08

使用DMRMAN執行歸檔修復
使用REPAIR命令完成指定資料庫的歸檔修復,歸檔修復會將目標庫dmarch.ini中配置的所有本地歸檔日誌目錄執行修復。若目標庫沒有配置本地歸檔,則不執行修復。執行修復時,目標庫一定不能處於執行狀態。一般建議在資料庫故障後,應立即執行歸檔修復,否則後續還原恢復導致聯機日誌中未刷入本地歸檔的REDO日誌丟失,屆時再利用本地歸檔恢復將無法恢復到故障前的最新狀態。

語法如下:

REPAIR DATABASE < 'INI檔案路徑'>;

INI檔案路徑:指定待修復歸檔的資料庫對應的dm.ini路徑。
使用說明:
1) 單機環境時,確保目標庫已經停止工作後,執行歸檔修復。

RMAN> repair archivelog database '/dm_home/dmdba/dmdbms/data/jydm/dm.ini';
repair archivelog database '/dm_home/dmdba/dmdbms/data/jydm/dm.ini';
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running...[4].
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running...[3].
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running...[2].
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running...[1].
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running...[0].
checking if the database under system path [/dm_home/dmdba/dmdbms/data/jydm] is running, write dmrman info.
EP[0] max_lsn: 20383733
repair archive log successfully.
repair time used: 6027.359(ms)
time used: 6027.438(ms)

2) RAC環境時,需要每個節點停止工作後,且每個節點獨立執行修復操作。對於兩節點RAC01、RAC02執行修復如下。

RMAN> repair archivelog database '/dm7/data/rac0_config/dm.ini';
repair archivelog database '/dm7/data/rac0_config/dm.ini';
checking if the RAC database under system path [+DMDATA/data/rac] is running....
EP [0] is checking....
EP [1] is checking....
EP[0] max_lsn: 80140
repair archive log successfully.
repair time used: 2237.302(ms)
time used: 2237.565(ms)
RMAN> repair archivelog database '/dm7/data/rac1_config/dm.ini';
repair archivelog database '/dm7/data/rac1_config/dm.ini';
file dm.key not found, use default license!
checking if the RAC database under system path [+DMDATA/data/rac] is running....
EP [0] is checking....
EP [1] is checking....
EP[1] max_lsn: 80023
EP[1] adjust cur_lsn from [80023] to [80140]
repair archive log successfully.
repair time used: 2262.513(ms)
time used: 2262.719(ms)


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

相關文章