Oracle恢復實驗(三)

wallimn發表於2011-09-26
環境:Oracle10g、Red Hat 4,Oracle執行在歸檔模式。

場景:恢復未備份的資料檔案。

具體步驟:
1、新建表空間testts,並建個表,插入些資料
SQL> create tablespace testts datafile '/home/oracle/oracle/product/oradata/orcl/testts01.dbf' size 10m;

Tablespace created.

SQL> create table testTab tablespace testts
2 as select * from scott.emp;

Table created.

SQL> select count(*) from testTab;

COUNT(*)
----------
14

SQL> commit;

Commit complete.

2、關庫、刪除資料檔案,模擬資料檔案損壞,注意沒有備份喲
SQL> shutdown abort

SQL> !rm -f /home/oracle/oracle/product/oradata/orcl/testts01.dbf

3、嘗試開啟資料庫
SQL> startup
ORACLE instance started.

Total System Global Area 130023424 bytes
Fixed Size 1218100 bytes
Variable Size 67111372 bytes
Database Buffers 58720256 bytes
Redo Buffers 2973696 bytes
Database mounted.
ORA-01157: cannot identify/lock data file 5 - see DBWR trace file
ORA-01110: data file 5: '/home/oracle/oracle/product/oradata/orcl/testts01.dbf'
會提示資料檔案無法找到。

5、重建資料檔案,嘗試開啟資料庫。
SQL> alter database create datafile '/home/oracle/oracle/product/oradata/orcl/testts01.dbf';

Database altered.

SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-01113: file 5 needs media recovery
ORA-01110: data file 5: '/home/oracle/oracle/product/oradata/orcl/testts01.dbf'
此時資料檔案是個空的,當然需要介質恢復

6、介質恢復
SQL> recover database;
Media recovery complete.

7、開啟資料庫,查檢資料是否恢復
SQL> alter database open;

Database altered.

SQL> select count(*) from testTab;

COUNT(*)
----------
14
全部資料都恢復回來了。

相關文章