系統內容:
1、作業系統:Windows 2000 Server,
2、資料庫: Oracle 8i R2 (8.1.6) for NT 企業版
3、安裝路徑:C:\ORACLE
錯誤現象:
因誤操作,資料庫中某一資料檔案被誤刪,
控制台的Oracle相關服務顯示已啟動,但用SQL*Plus無法串連,
顯示以下錯誤
ORA-01033: ORACLE initialization or shutdown in progress
類比現象:
create tablespace test datafile
'c:\test.ora' size 5M
AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED
default storage (initial 128K next 1M pctincrease 0)
/
關閉所有服務stop.bat
net stop "OracleWebAssistant0"
net stop "OracleOraHome81TNSListener"
net stop "OracleServiceORADB"
shutdown
在作業系統中刪除test.ora檔案
重新啟動服務start.bat
net start "OracleWebAssistant0"
net start "OracleOraHome81TNSListener"
net start "OracleServiceORADB"
服務裡OracleServiceORADB顯示已啟動,但用SQL*Plus無法串連,
顯示ORA-01033: ORACLE initialization or shutdown in progress
解決方案:
先讓該資料檔案離線,就可以開啟資料庫
C:\>svrmgrl
svrmgrl>connect internal/oracle
svrmgrl>shutdown
svrmgrl>startup mount
--ARCHIVELOG模式命令,檔案名稱要大寫
svrmgrl>alter database datafile 'C:\TEST.ORA' offline;
--NOARCHIVELOG模式命令
svrmgrl>alter database datafile 'C:\TEST.ORA' offline drop;
svrmgrl>alter database open;
--查詢資料檔案聯、離線狀態
SQL> select file#,name,status from v$datafile;
SQL> drop tablespace test;
資料表空間已丟棄。