当前位置: 代码迷 >> 综合 >> ORA-01089 Oracle 数据库无法正常关闭问题处理
  详细解决方案

ORA-01089 Oracle 数据库无法正常关闭问题处理

热度:74   发布时间:2024-01-03 14:21:46.0

问题描述

测试环境 关闭数据库时,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.

万幸!数据库启动成功!问题解决!
在这里插入图片描述

  相关解决方案