刪除 SDE.DBF 所帶來的ORA-01033: ORACLE initialization or shutdown in progress錯誤問題

來源:互聯網
上載者:User

在開始-運行中輸入命令:sqlplus /NOLOG
進入開啟sqlplus.exe
下面步驟:
SQL>connect sys/使用者口令 as sysdba
SQL>shutdown normal
SQL>startup mount

ORACLE 常式已經啟動。

Total System Global Area        293601280 bytes
Fixed Size                        1248624 bytes
Variable Size                    88081040 bytes
Database Buffers                201326592 bytes
Redo Buffers                      2945024 bytes
資料庫裝載完畢。

SQL>alter database open
2 ;
alter database open
*
第 1 行出現錯誤:
ORA-01157: 無法標識/鎖定資料檔案 11 - 請參閱 DBWR 追蹤檔案
ORA-01110: 資料檔案 11: 'D:"SDE.DBF'

由此可得出是我剛才的資料檔案刪除操作引起的,怎麼辦呢?

下面是給出解決辦法:
SQL> alter database create datafile 7;

資料庫已更改。

SQL> conn scott/tiger
ERROR:
ORA-01033: ORACLE initialization or shutdown in progress

警告: 您不再串連到 ORACLE。
SQL> alter database datafile 11 offline drop;
SP2-0640: 未串連

SQL> conn sys/oracle as sysdba;
已串連。
SQL> alter database datafile 11 offline drop;(

datafile offline drop 與 datafile offline 區別

歸檔模式下是沒有區別的,非歸檔模式必須用offline drop。

)

資料庫已更改。

如果刪除了多個檔案,則還會出現:

SQL> conn scott/tiger
ERROR:
ORA-01033: ORACLE initialization or shutdown in progres

重複上面的步驟,不過,要注意 datafile 後面的檔案號(如上面是datafile 11,比如這次是10)

那麼的話,繼續吧SQL> alter database create datafile 10;

知道你重複上面的步驟,發現能用scott登陸為止,其實你刪除了幾個資料檔案,你就要重複刪除幾次。

最後重啟下服務和監聽,在進入Net Manager中進行服務測試吧。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.