如何恢復一個丟失的oracle數(shù)據(jù)文件
如果你目前擁有一個冷備份,但是缺少了其中的一個數(shù)據(jù)文件,但你目前存在所有的歸檔,假如你要恢復數(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. Sql Server 壓縮數(shù)據(jù)庫日志文件的方法2. DB2數(shù)據(jù)庫控制中心亂碼問題解決方法集合3. DB2 9數(shù)據(jù)庫中有關(guān)同步trigger的記錄4. SQLServer導出數(shù)據(jù)庫字典的詳細圖文教程5. Mysql數(shù)據(jù)庫慢查詢常用優(yōu)化方式6. 如何在SQL Server中恢復數(shù)據(jù)7. IBM DB2數(shù)據(jù)庫中應當如何更新執(zhí)行計劃8. Oracle 9i 數(shù)據(jù)庫WITH查詢語法小議9. MySQL 數(shù)據(jù)類型選擇原則10. Oracle數(shù)據(jù)字典詳解

網(wǎng)公網(wǎng)安備