ORA01033: ORACLE initialization or shutdown in progress


ORA-01033: ORACLE initialization or shutdown in progress

C:\Users\Administrator>sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on 星期五 4月 26 19:05:16 2013

Copyright (c) 1982, 2005, Oracle. All rights reserved.


SQL> connect sys/admin as sysdba;
已连接。
SQL> shutdown normal;
ORA-01109: 数据库未打开


已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup mount;
ORACLE 例程已经启动。

Total System Global Area 293601280 bytes
Fixed Size 1248600 bytes
Variable Size 88081064 bytes
Database Buffers 197132288 bytes
Redo Buffers 7139328 bytes
数据库装载完毕。
SQL> alter database open;
alter database open
*
第 1 行出现错误:
ORA-01157: 无法标识/锁定数据文件 14 - 请参阅 DBWR 跟踪文件
ORA-01110: 数据文件 14: 'D:\ORACLEDATA\ZJJB2_DATA.ORA'


SQL> alter database datafile 14 offline drop;

数据库已更改。

SQL> alter database open;

数据库已更改。

SQL> select sysdate from dual;

SYSDATE
--------------
26-4月 -13

SQL>

原文地址:https://www.cnblogs.com/alliswell/p/3045534.html