ora-01033:oracle initialization or shutdown in progress 解决方法

ora-01033:oracle initialization or shutdown in progress 解决方法
今天使用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;




 




 

你可能感兴趣的:(ora-01033:oracle initialization or shutdown in progress 解决方法)