LianTong rman資料庫恢復
ORACLE_BASE=/oracle
ORACLE_HOME=$ORACLE_BASE/product/10.1.0
ORACLE_SID=imps
#NLS_LANG=AMERICAN_AMERICA.UTF8
NLS_LANG=.UTF8
PATH=$ORACLE_HOME/bin:/bin:/sbin:/usr/ccs/bin:/usr/local/bin
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/network/lib:/usr/local/lib:/usr/lib
NLS_DATE_FORMAT="Mon DD YYYY HH24:MI:SS"
TMPDIR=/var/tmp
LANG=en_US.UTF-8
export ORALCE_BASE ORACLE_HOME ORACLE_SID NLS_LANG PATH
export LD_LIBRARY_PATH DISPLAY TMPDIR LANG NLS_DATE_FORMAT
umask 022
1、啟動rman
c:>rman target sys/oracle nocatalog;
2、進行不完全恢復
恢復archive log 檔案:
RMAN> run {
allocate channel test type disk;
SET ARCHIVELOG DESTINATION TO '/oraarchive';
RESTORE ARCHIVELOG ALL;
release channel test;
}
恢復controlfile檔案:
RMAN> run {
allocate channel test type disk;
restore controlfile to 'd:control.ctl';
release channel test;
}
恢復資料檔案:
RMAN> run {
set until time='2005-02-17 15:01:20';
restore database;
recover database;
alter database open resetlogs;
}
3、資料庫恢復成功
SQL> select table_name from user_tables;
TABLE_NAME
------------------------------
BONUS
DEPT
EMP
EMPCOPY
EMPCOPY1
EMPCOPY2
EMPCOPY3
EMPCOPY4
SALGRADE
注意:需要所有的archivelog 檔案及所有的備份檔案
4、重新註冊rman
RMAN> register database;
RMAN> list incarnation of database;
RMAN> reset database;
RMAN> list incarnation of database;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7916042/viewspace-933264/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RMAN恢復資料庫資料庫
- rman 全庫恢復asm資料庫ASM資料庫
- oracle之rman恢復資料庫Oracle資料庫
- 【RMAN】rman使用NORESTELOGS 方式恢復資料庫REST資料庫
- 利用RMAN恢復整個資料庫資料庫
- 【備份恢復】RMAN catalog 恢復目錄資料庫資料庫
- rman資料庫全庫備份與恢復資料庫
- RMAN 資料庫修復(restore)與資料庫恢復(recover)介紹資料庫REST
- 使用RMAN還原和恢復資料庫資料庫
- 利用rman恢復來複制資料庫資料庫
- RMAN恢復目錄資料庫的搭建資料庫
- oracle RMAN 非歸檔資料庫恢復Oracle資料庫
- rman 恢復資料塊
- rman恢復資料塊
- rman備份恢復-rman恢復資料檔案測試
- RMAN備份恢復典型案例——資料庫卡頓資料庫
- Oracle Rman 資料庫的不完全恢復Oracle資料庫
- 非RMAN熱備份資料庫和恢復資料庫
- Oracle資料庫備份與恢復之RMANOracle資料庫
- Oracle資料庫RMAN小結之恢復部分Oracle資料庫
- 使用RMAN恢復完全損壞的資料庫資料庫
- rman不使用恢復目錄恢復資料庫示例及問題資料庫
- RMAN一次RMAN將資料庫不完全恢復資料庫
- 【資料庫資料恢復】SAP資料庫資料恢復案例資料庫資料恢復
- postgresql 使用pg_rman恢復還原資料庫SQL資料庫
- 【Oracle】rman 恢復只讀表空間資料庫Oracle資料庫
- 資料庫resetlogs後進行rman恢復7資料庫
- 資料庫resetlogs後進行rman恢復6資料庫
- 資料庫resetlogs後進行rman恢復5資料庫
- 資料庫resetlogs後進行rman恢復4資料庫
- 資料庫resetlogs後進行rman恢復3資料庫
- 資料庫resetlogs後進行rman恢復2資料庫
- 資料庫resetlogs後進行rman恢復1資料庫
- RMAN基於時間點恢復Oracle資料庫Oracle資料庫
- 透過RMAN進行資料庫恢復(step by step)資料庫
- 利用rman全備恢復刪除的資料庫資料庫
- rman通過之前的incarnation恢復資料庫!資料庫
- rman恢復資料檔案 恢復表空間