故障现象:
检查数据库备份时发现数据库未执行备份,查看日志显示:
ORA-00020: maximum number of processes (1000) 错误处理_第1张图片
[root@oracle 11g ~]# su - oracle
[root@oracle 11g ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 18 18:14:15 2014

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

ERROR:
ORA-00020: maximum number of processes (1000) exceeded #登录oracle时报进程数超过1000的错误,导致无法登录。
查看oracle报错实例的进程数,发现很多进程:
[root@oracle 11g ~]$ps -ef|grep "oracleXXXX (LOCAL=NO)" #XXXX为数据库实例
故障处理:
[root@oracle 11g ~]$ps -ef|grep "oracleXXXX (LOCAL=NO)"|grep -v grep|awk '{print $2}'|xargs kill -9

重新登录数据库
问题解决。