标签:roo serve 1.0 sql oss exce -o error 无法登录
故障现象: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
重新登录数据库
问题解决。
ORA-00020: maximum number of processes (1000) 错误处理
标签:roo serve 1.0 sql oss exce -o error 无法登录
原文地址:http://blog.51cto.com/3001441/2072430