0
点赞
收藏
分享

微信扫一扫

ORA-01033: ORACLE initialization or shutdown in progress


ORA-01033: ORACLE initialization or shutdown in progress


Microsoft Windows [版本 6.1.7600]

版权所有 (c) 2009 Microsoft Corporation。保留所有权利。


C:\Users\Administrator>sqlplus /nolog


SQL*Plus: Release 11.2.0.1.0 Production on 星期一 1月 7 09:03:26 2013


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


SQL> connect system/123 as sysdba;

已连接。

SQL> shutdown normal

ORA-01109: 数据库未打开



已经卸载数据库。

ORACLE 例程已经关闭。

SQL> startup mount;

ORACLE 例程已经启动。


Total System Global Area 778387456 bytes

Fixed Size 1374808 bytes

Variable Size 335545768 bytes

Database Buffers 436207616 bytes

Redo Buffers 5259264 bytes

数据库装载完毕。

SQL> alter database open;

alter database open

*

第 1 行出现错误:

ORA-01157: 无法标识/锁定数据文件 7 - 请参阅 DBWR 跟踪文件

ORA-01110: 数据文件 7: 'D:\ORACLE_TEST_DB.DBF'



SQL> alter database open resetlogs;

alter database open resetlogs

*

第 1 行出现错误:

ORA-01139: RESETLOGS 选项仅在不完全数据库恢复后有效



SQL> alter database open system;

alter database open system

*

第 1 行出现错误:

ORA-02288: 无效的 OPEN 模式



SQL> alter database open test;

alter database open test

*

第 1 行出现错误:

ORA-02288: 无效的 OPEN 模式



SQL>[color=red]

alter database datafile 7 offline drop;

[/color]

数据库已更改。


SQL> shutdown normal

ORA-01109: 数据库未打开



已经卸载数据库。

ORACLE 例程已经关闭。

SQL> startup mount;

ORACLE 例程已经启动。


Total System Global Area 778387456 bytes

Fixed Size 1374808 bytes

Variable Size 335545768 bytes

Database Buffers 436207616 bytes

Redo Buffers 5259264 bytes

数据库装载完毕。

SQL>

[url]

举报

相关推荐

0 条评论