Oracle错误解决:ORA
程序员文章站
2022-05-11 08:51:45
...
问题: java.sql.SQLException : Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handlerfound 解决:超过连接数,所以要扩大。在oracle中执行sql语句 select value from v$parameter where name ='proc
问题:java.sql.SQLException: Listener refused the connection with the following error:
ORA-12519, TNS:no appropriate service handlerfound
解决:超过连接数,所以要扩大。在oracle中执行sql语句
select value from v$parameter where name ='processes'; 取得进程数的上限。
alter system set processes = 300 scope =spfile; 重新设置连接数
alter system set sessions=335 scope=spfile; 设置SESSIONS = PROCESSES * 1.1 + 5
重启数据库:
shutdown immediate;
startup;
推荐阅读
-
ORA-12012: error on auto execute of job "ORACLE
-
ORA-00600 [2662][][][][][] 错误解决
-
ORA-39126 ORA-00904 ORA-06512解决过程
-
Solaris 10下Oracle-12516错误解决
-
JavaScript 嵌套函数指向this对象错误的解决方法_javascript技巧
-
表单提交错误后返回内容消失问题的解决方法(PHP网站)
-
ORA-28002/ORA-28000 解决11g 密码过期、密码输错锁住用户问题--修改 default profil
-
ios学习之真机测试 copy图片错误解决方案
-
11.2.0.3 ASM实例出现ORA-4031错误导致数据库归档失败
-
剖析Oracle的网络结构轻松解决连接问题