Oracle 登录卡死异常处理

使用 sqlplus "/as sysdba" 登录数据库,卡死在如下界面

SQL*Plus: Release 10.2.0.2.0 - Production on Sat May 25 18:37:15 2019

Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.


Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

Ctrl+C 无法终止,只能另开终端强制kill

日志没看出明显的异常

处理方式:

使用 sqlplus -prelim  / as sysdba 登录

shutdown abort

再用 sqlplus "/as sysdba" 登录

startup

异常解除。

目前仍然没有找到出现这个问题产生的原因,待查。

 

你可能感兴趣的:(数据库)