在開始-運行中輸入命令: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中進行服務測試吧。