如何恢復(fù)一個(gè)丟失的oracle數(shù)據(jù)文件
如果你目前擁有一個(gè)冷備份,但是缺少了其中的一個(gè)數(shù)據(jù)文件,但你目前存在所有的歸檔,假如你要恢復(fù)數(shù)據(jù)文件,可以參考以下的示例:
[oracle@jumper eygle]$ sqlplus '/ as sysdba'SQL*Plus: Release 9.2.0.4.0 - Production on Sun Aug 20 01:22:50 2006Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.Connected to an idle instance.SQL> startup mountORACLE instance started.Total System Global Area 252777592 bytesFixed Size 451704 bytesVariable Size 134217728 bytesDatabase Buffers117440512 bytesRedo Buffers 667648 bytesDatabase mounted.SQL> alter database open;alter database open*ERROR at line 1:ORA-01157: cannot identify/lock data file 3 - see DBWR trace fileORA-01110: data file 3: '/opt/oracle/oradata/eygle/eygle02.dbf'SQL> alter database create datafile 3 as '/opt/oracle/oradata/eygle/eygle02.dbf';Database altered.SQL> select name from v$datafile;NAME-------------------------------------------------------/opt/oracle/oradata/eygle/system01.dbf/opt/oracle/oradata/eygle/undotbs01.dbf/opt/oracle/oradata/eygle/eygle02.dbf/opt/oracle/oradata/eygle/eygle01.dbfSQL> alter database open;alter database open*ERROR at line 1:ORA-01113: file 3 needs media recoveryORA-01110: data file 3: '/opt/oracle/oradata/eygle/eygle02.dbf'SQL> recover datafile 3;Media recovery complete.SQL> alter database open;Database altered.SQL>
相關(guān)文章:
1. mysql數(shù)據(jù)庫(kù)中最常用的時(shí)間轉(zhuǎn)換函數(shù)的用法3. DB2的表數(shù)據(jù)加密4. 關(guān)于Oracle數(shù)據(jù)庫(kù)中的鎖機(jī)制深入研究5. 什么是Access數(shù)據(jù)庫(kù)6. 導(dǎo)出錯(cuò)誤編碼的mysql數(shù)據(jù)庫(kù)7. 數(shù)據(jù)庫(kù)Oracle9i的企業(yè)管理器簡(jiǎn)介8. Access數(shù)據(jù)庫(kù)安全的幾個(gè)問(wèn)題9. Mysql入門(mén)系列:對(duì)MYSQL查詢中有疑問(wèn)的數(shù)據(jù)進(jìn)行編碼10. 巧用SQL語(yǔ)言在ACCESS數(shù)據(jù)庫(kù)中批量替換內(nèi)容
