【Oracle】表空間誤刪除導致startup啟動時提示ORA-01110和ORA-01157錯誤
今天遇到一個比較神奇的問題,客戶某套測試資料庫斷電重啟了,重啟時發現資料庫提示 ORA-01157: cannot identify/lock data file和ORA-01110的錯誤,經過檢查發現是系統啟動後未掛載儲存,表空間都放在儲存盤上,手工掛載儲存後所有問題迎刃而解。當時沒有記錄問題,這裡透過測試環境模擬重現問題。
製造實驗資料
[oracle@XLJ181 ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Mon Dec 10 19:27:14 2018 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SYS@cams> create tablespace test datafile '/home/oracle/test.dbf' size 100M; Tablespace created. SYS@cams> create user test identified by 123456 default tablespace test; User created. SYS@cams> grant connect,resource to test; Grant succeeded. TEST@cams> create table test(id number primary key,name varchar2(20)); Table created. TEST@cams> insert into test values(1,'bob'); 1 row created. TEST@cams> insert into test values(2,'joe'); 1 row created. TEST@cams> select count(*) from test; COUNT(*) ---------- 2 TEST@cams> conn / as sysdba Connected. SYS@cams> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SYS@cams> exit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
模擬檔案誤刪除
[oracle@XLJ181 ~]$ mv /home/oracle/test.dbf /home/oracle/test.dbf.bak
故障出現
啟動資料庫,發現資料檔案不存在:
[oracle@XLJ181 ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Mon Dec 10 19:38:26 2018 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to an idle instance. SYS@cams> startup; ORACLE instance started. Total System Global Area 5344731136 bytes Fixed Size 2262656 bytes Variable Size 1040189824 bytes Database Buffers 4294967296 bytes Redo Buffers 7311360 bytes Database mounted. ORA-01157: cannot identify/lock data file 63 - see DBWR trace file ORA-01110: data file 63: '/home/oracle/test.dbf'
檢視trace檔案:
Mon Dec 10 19:38:35 2018 ALTER DATABASE OPEN Errors in file /u01/app/oracle/diag/rdbms/cams/cams/trace/cams_dbw0_21153.trc: ORA-01157: cannot identify/lock data file 63 - see DBWR trace file ORA-01110: data file 63: '/home/oracle/test.dbf' ORA-27037: unable to obtain file status Linux-x86_64 Error: 2: No such file or directory Additional information: 3 Errors in file /u01/app/oracle/diag/rdbms/cams/cams/trace/cams_ora_21175.trc: ORA-01157: cannot identify/lock data file 63 - see DBWR trace file ORA-01110: data file 63: '/home/oracle/test.dbf' ORA-1157 signalled during: ALTER DATABASE OPEN...
檢視 cams_ora_21175.trc檔案,報錯資訊如下:
DDE: Problem Key 'ORA 1110' was flood controlled (0x1) (no incident) ORA-01110: data file 63: '/home/oracle/test.dbf' ORA-01157: cannot identify/lock data file 63 - see DBWR trace file ORA-01110: data file 63: '/home/oracle/test.dbf'
檢視 cams_dbw0_21153.trc檔案,報錯資訊如下:
ORA-01157: cannot identify/lock data file 63 - see DBWR trace file ORA-01110: data file 63: '/home/oracle/test.dbf' ORA-27037: unable to obtain file status Linux-x86_64 Error: 2: No such file or directory Additional information: 3
問題已經很明顯了,就是找不到 data file 63: '/home/oracle/test.dbf'。
針對該問題,我們應該怎麼去處理呢?特別是測試環境,一般為了節約資源,不會開啟歸檔,更不會有RMAN備份,那怎麼讓資料庫跑起來,讓資料損失降到最低呢?
常用解決方案: offline drop+recreate
SQL> shutdown immediate; SQL> startup mount; SQL> alter database datafile '/home/oracle/test.dbf' offline drop; SQL> alter database open; SQL> drop tablespace test including contents; --注意:執行之前檢查是否還有其他檔案屬於該表空間 SQL> create tablespace test datafile '/home/oracle/test.dbf' size 100M;
因為是測試環境,想辦法重建資料或者利用最近的邏輯備份或其他測試匯入資料,這樣能把資料損失降到最低。
如果刪除的是核心系統的表空間,那麼還不如重建表空間之後把相關資料清理之後重新匯入一份。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31394774/viewspace-2284782/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- AWR不自動刪除導致SYSAUX表空間滿UX
- oracle誤刪除表空間的資料檔案Oracle
- oracle8i誤刪除臨時表空間後的恢復Oracle
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- oracle 失誤刪掉資料檔案後,刪除表空間操作Oracle
- flashback database 恢復誤刪除的表空間。Database
- 時區錯誤導致oracle的EM不能啟動解決辦法Oracle
- startup 資料庫時報出ORA-01157、ORA-01110的錯誤資料庫
- 誤刪oracle資料庫表空間檔案Oracle資料庫
- Oracle 11g RMAN恢復-使用者誤刪除表空間Oracle
- 啟動PHP時提示初始化錯誤PHP
- Oracle10g中的flashback啟用日誌歸檔,寫滿空間導致錯誤Oracle
- Cancel 刪除 正在使用的臨時表空間的操作 將導致異常
- MySQL在刪除表時I/O錯誤原因分析MySql
- Oracle 11g 表空間的誤刪除, 當前的控制檔案不識別該表空間Oracle
- [Oracle]由於初始化引數檔案修改錯誤導致oracle無法startupOracle
- oracle之EXP匯出表空間錯誤解決Oracle
- impdp時parallel=4導致的錯誤Parallel
- 【北亞資料恢復】誤刪除oracle表和誤刪除oracle表資料的資料恢復方法資料恢復Oracle
- 刪除表空間和表空間包含的檔案
- 刪除應用程式對映會導致OWA出現404錯誤
- ORACLE表空間的建立修改刪除Oracle
- [oracle]undo表空間出錯,導致資料庫例項無法開啟Oracle資料庫
- oracle級聯刪除使用者,刪除表空間Oracle
- 刪掉Oracle臨時表空間Oracle
- 轉貼:收縮oracle表空間時ora-03297錯誤的解決Oracle
- ORA-01110,ORA-01157錯誤處理
- 刪除臨時表空間hang處理
- 臨時表空間的建立、刪除,設定預設臨時表空間
- 動態建立 @ViewChild 導致執行時錯誤的原因分析View
- 【Oracle-資料庫維護】-刪除臨時表空間Oracle資料庫
- oracle 刪除表空間試驗面面觀Oracle
- HTTP錯誤提示資訊表HTTP
- Oracle GoldenGate導致IMP出現ORACLE 32588錯誤OracleGo
- 【ITPUB論壇】求助!刪除表空間出錯
- 【Oracle故障處理】-Oracle9i臨時表空間刪除重建Oracle
- /etc/fstab的錯誤設定導致系統啟動失敗
- 【ASM學習】手工刪除ASM磁碟組時提示錯誤ORA-15039ASM