这个错误是当前活跃量大于最大量
查看当前活跃量
select count(*) from v$process --当前活跃量
select value from v$parameter where name = ‘processes’; --最大量
当快抛出这个异常时看看当前的活跃量是多少,肯定是快接近了最大量,则需要就修改最大进程量
进入cmd:
sqlplus/nolog
登录成功后,输入
conn / as sysdba;
select count(*) from v$process
select value from v$parameter where name = 'processes';
此时查看最