问题描述
在 测试环境
关闭数据库时,shutdown immediate命令迟迟没有反应。
Ctrl+C退出后再次执行shutdown immediate命令,报错信息如下:
SQL> shutdown immediate
ERROR:
ORA-01089: immediate shutdown or close in progress - no operations are
permitted
Process ID: 0
Session ID: 0 Serial number: 0
如果执行 startup 命令,报错信息如下:
SQL> startup
ORA-01012: not logged on
Process ID: 0
Session ID: 0 Serial number: 0
原因分析
可能是在关闭数据库时出现了问题
执行如下命令查看,发现还有很多实例进程存在:
# su - oracle
$ ps -ef|grep ora
处理方法
1)使用 shutdown abort 命令强制关闭数据库( 正式环境慎用!!!
)
SQL> shutdown abort
ORACLE instance shut down.
2)正常启动数据库
SQL> startup
ORACLE instance started.
Total System Global Area 3.4360E+10 bytes
Fixed Size 6877112 bytes
Variable Size 5368709192 bytes
Database Buffers 2.8924E+10 bytes
Redo Buffers 60231680 bytes
Database mounted.
Database opened.
万幸!数据库启动成功!问题解决!