今天使用Oracle遇到了這個問題ora-01033:oracle initialization or shutdown in progress,經過分析研究終于解決了,記下來.我遇到的錯誤是ORA-00600: 內部錯誤代碼,參數: [kcratr1_lostwrt]
分析過程:
運行中輸入cmd,、輸入sqlplus /nolog,然后用 用sys登陸。
Microsoft Windows [版本 5.2.3790]
(C) 版權所有 1985-2003 Microsoft Corp.
E:\Documents and Settings\Administrator>sqlplus /nolog
SQL*Plus: Release 9.2.0.1.0 - Production on 星期一 4月 8 14:20:05 2
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> connect sys/sys as sysdba;
已連接。
SQL> shutdown normal
ORA-01109: 數據庫未打開
已經卸載數據庫。
ORACLE 例程已經關閉。
SQL> startup mount
ORACLE 例程已經啟動。
Total System Global Area 135338868 bytes
Fixed Size 453492 bytes
Variable Size 109051904 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
數據庫裝載完畢。
SQL> alter database open;
出現以下錯誤:
ORA-00600: 內部錯誤代碼,參數: [kcratr1_lostwrt]
出現該錯誤是因為系統強制關機造成的!
癥狀為數據庫無法打開!
解決這個錯誤:
SQL> shutdown normal
ORA-01109: 數據庫未打開
已經卸載數據庫。
ORACLE 例程已經關閉。
SQL> startup mount
ORACLE 例程已經啟動。
Total System Global Area 135338868 bytes
Fixed Size 453492 bytes
Variable Size 109051904 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
數據庫裝載完畢。
SQL>recover database;
完成介質恢復
SQL> alter database open;
數據庫已更改
SQL>exit;
posted on 2013-04-08 14:53
kelly 閱讀(664)
評論(0) 編輯 收藏 所屬分類:
oracle