我遇到的錯(cuò)誤是ORA-00600: 內(nèi)部錯(cuò)誤代碼,參數(shù): [kcratr1_lostwrt]
分析過程:
運(yùn)行中輸入cmd,、輸入sqlplus /nolog,然后用 用sys登陸。
Microsoft Windows [版本 5.2.3790]
(C) 版權(quán)所有 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: 數(shù)據(jù)庫未打開
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關(guān)閉。
SQL> startup mount
ORACLE 例程已經(jīng)啟動(dòng)。
Total System Global Area 135338868 bytes
Fixed Size 453492 bytes
Variable Size 109051904 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
數(shù)據(jù)庫裝載完畢。
SQL> alter database open;
出現(xiàn)以下錯(cuò)誤:
ORA-00600: 內(nèi)部錯(cuò)誤代碼,參數(shù): [kcratr1_lostwrt]
出現(xiàn)該錯(cuò)誤是因?yàn)橄到y(tǒng)強(qiáng)制關(guān)機(jī)造成的!
癥狀為數(shù)據(jù)庫無法打開!
解決這個(gè)錯(cuò)誤:
SQL> shutdown normal
ORA-01109: 數(shù)據(jù)庫未打開
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關(guān)閉。
SQL> startup mount
ORACLE 例程已經(jīng)啟動(dòng)。
Total System Global Area 135338868 bytes
Fixed Size 453492 bytes
Variable Size 109051904 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
數(shù)據(jù)庫裝載完畢。
SQL>recover database;
完成介質(zhì)恢復(fù)
SQL> alter database open;
數(shù)據(jù)庫已更改
SQL>exit;