關於丟失表空間資料檔案的處理方式

2021-07-27 13:32:31 字數 1045 閱讀 1850

語法:

drop tablespace tablespace 

[ including contents [ datafiles ]

[ cascade constraints ]

] ;drop tablespace *** 會出現如下錯誤:

ora-01116: error in opening database file 89

ora-01110: data file 89: '/templv/osm/osm_tabp_00.dbf'

ora-27041: unable to open file

linux error: 2: no such file or directory

additional information: 3

如果表空間資料檔案不重要直接刪除:

首先將表空間檔案改為offline就可以了!

sql>alter database datafile '/templv/osm/osm_tabp_00.dbf' offline drop;

是每乙個檔案都要offline才可以刪除.

現在使用:

drop tablespace osm_tabp_0 including contents

就ok了!

如果需要恢復  參考下面步驟

解決步驟是:重新建立乙個資料檔案,然後recover過來就可以了,不過前提是日誌檔案還在。 

1. startup mount 

2. alter database create datafile'/opt/oracle/oradata/test/testdata.dbf'; 

3. set autorecovery on; 

4. recover datafile '/opt/oracle/oradata/test/testdata.dbf'; 

5. alter database datafile '/opt/oracle/oradata/test/testdata.dbf' online; 

6. alter database open; 

移動表空間資料檔案

2011年5月31日 移動表空間資料檔案方法 一 首先啟用介質恢復即開啟歸檔模式,用sys使用者 如果已經開啟則省略該步驟 sql shutdown immediate 資料庫已經關閉。已經解除安裝資料庫。oracle 例程已經關閉。sql startup mount oracle 例程已經啟動。t...

Undo表空間資料檔案損壞

undo表空間資料檔案和system表空間資料檔案都是資料庫的關鍵資料檔案,如果損壞會導致sql執行失敗,使用者無法登入,甚至例項崩潰等。同樣恢復undo表空間資料檔案也必須在資料庫mount狀態下進行。資料庫在執行過程中發現undo表空間資料檔案損壞,此時是無法正常關閉資料庫的 sql shutd...

歸檔,表空間,資料檔案的定義

歸檔當這個日誌寫滿了,就將這個檔案歸檔,儲存著,就是將乙個寫滿了日誌的檔案複製乙份到乙個指定的資料夾中,可以將這些歷史日誌檔案都copy 歸檔 乙份,而不會在輪循中被覆蓋,起到保護資料的功能,這就是歸檔日誌。這樣做的用處 比如,你儲存了乙個月的歸檔日誌,那就意味著你可以將資料庫還原到這個月內的任意乙...