OERR: ORA-12519 TNS:no appropriate service handler found 客户端连接间歇性失败,报错ORA-12519 Cause: the listener could not find any available service handlers that are appropriate for the client connection. Action: 检查lsnrctl service ,instance已经注册,状态显示ready时,可以连接。 When the listener bel...
ORA-12519: TNS:no appropriate service handler found 解决,有时候连得上数据库,有时候又连不上.可能是数据库上当前的连接数目已经超过了它能够处理的最大值.
ORA-12519的解释就是找不到合适的服务句柄,当前注册到监听的实例无法接收连接请求, SQL> !oerr ora 12519 12519, 00000, "TNS:no appropriate service handler found" // *Cause: The listener could not find any available service handlers that // are appropriate for the client connection. // *Action: ...
ORA-12519, TNS:no appropriate service handler found The Connection descriptor used by the client was:192.9.100.217:7001:wcm 问题分析: 可能是数据库上当前的连接数目已经超过了它能够处理的最大值.修改数据库允许的最大连接数即可解决 知识扩展 selectcount(*)fromv$process--当前的连接数selectvaluefromv$para...
一、问题现象 今天有AP用户反映,数据库有时候连的上,有时候连不上,报如下的错误: ORA-12519: TNS:no appropriate service handler found �...
alter system set processes = 300 scope = spfile; 重启数据库: shutdown immediate; startup; --查看当前有哪些用户正在使用数据 SELECT osuser, a.username,cpu_time/executions/1000000||'s', sql_fulltext,machine from v$session a, v$sqlarea b ...
ORA-12519, TNS:no appropriate service handler found The Connection descriptor used by the client was: 172.0.2.58:1521:rac11g1 检查了半天metalink,最终发现是由于Oracle初始化参数的设置问题导致了bug。 SQL> SHOW PARAMETER SESSION NAME TYPE VALUE ...
我最近再给用户上线一个项目的时候,再用户使用过程中,出现一个bug:ORA-12519: TNS:no appropriate service handler found 。 具体描述为:oracle数据库时不时的会连接不上。 原因:可能是数据库上当前的连接数目已经超过了它能够处理的最大值。 解决方法如下: ...
select value from v$parameter where name = 'processes' --数据库允许的最大连接数 修改最大连接数: alter system set processes = 300 scope = spfile; 重启数据库: shutdown immediate; startup; --查看当前有哪些用户正在使用数据 SELECT osuser, a.username,cpu_time/executions/1000000||'s', sql_full...