意外刪除Oracle資料檔案(dbf),恢複oralce庫的解決辦法–Oracle錯誤碼:ORA-01033

來源:互聯網
上載者:User

系統內容:
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;

資料表空間已丟棄。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.