ORA-12519: TNS:no appropriate service handler found 解决,有时候连得上数据库,有时候又连不上.可能是数据库上当前的连接数目已经超过了它能够处理的最大值.
ORA-12519, TNS:no appropriate service handler found 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已经...
最近做项目遇到一个连接Oracle的问题,报错如题:ORA-12519: TNS:no appropriate service handler found,应该是项目中的有些算法把所有连接都占用了,没办法只能增大数据的连接,具体做法如下: select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允许的...
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. ...
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...
一、问题现象 今天有AP用户反映,数据库有时候连的上,有时候连不上,报如下的错误: ORA-12519: TNS:no appropriate service handler found �...
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时,可以连接。
我最近再给用户上线一个项目的时候,再用户使用过程中,出现一个bug:ORA-12519: TNS:no appropriate service handler found 。 具体描述为:oracle数据库时不时的会连接不上。 原因:可能是数据库上当前的连接数目已经超过了它能够处理的最大值。 解决方法如下: ...
select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允许的最大连接数 修改最大连接数: alter system set processes = 300 scope = spfile; 重启数据库: shutdown immediate; startup; ...