具体信息如下:ora-12519 tns:no appropriate service handler found the connection descriptor used by the client172.16.2.222:orcl下面是具体的解决方案;在线;
原创 2021-12-30 17:53:16
243阅读
业务系统试运行期间,后台一直报12519异常,详情参见下图: 问题:系统在运行时出现了ORA-12519的错误,无法连接数据库(并不是Oracle数据库、或者监听连接不了),客户端连接间歇性失败,报错ORA-12519。 报错:OERR: ORA-12519 TNS:no appropriate s ...
转载 2021-10-22 14:33:00
464阅读
2评论
OERR: ORA-12519 TNS:no appropriate service handler found 客户端连接间歇性失败,报错ORA-12519 Cause: the listener could not find any available service handlers that are        
转载 精选 2011-10-21 17:53:08
560阅读
1、使用sqlplus登录,查询当前的连接数selectcount(*)fromv$process;2、设置的最大连接数(默认值为150)selectvaluefromv$parameterwherename='processes';3、修改最大连接数altersystemsetprocesses=600scope=spfile;4、重启oralce服务
原创 2018-08-10 10:02:47
1178阅读
今天测试数据库(SUSE linux平台 oracle11G R2)使用PLSQL Developer突然连上不了,报ORA-12519 no appropriate service handler found 错误; 用sqlplus登陆连接数据库时,报 ORA-00020:maximum number of processes (150) exceeded。比较明显是进程达到上限值150了处理
原创 2014-02-19 12:07:51
1063阅读
系统正常运行一个月后,上线第一天出现了下列错误,想了很久没有思路。后来排查出数据库监听异常,发现是ORA-12519拒绝错误。后来发现是数据的连接池达到的极致。具体解决方案如下: --首先检查process和session的使用情况,在sqlplus里面查看。SQL> show parameter processesNAME    &nbsp
翻译 精选 2014-07-25 20:10:18
732阅读
select count(*) from v$process --当前的连接数select value from v$parameter where name = 'processes' --数据库允许的最大连接数修改最大连接数:alter system set processes = 300 sc...
转载 2015-11-01 16:20:00
110阅读
2评论
有时候连得上Oracle数据库,有时候又连不上. 可能是数据库上当前的连接数目已经超过了它能够处理的最大值. select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'pro
转载 精选 2011-10-16 09:50:23
615阅读
家中领导提了个问题,某系统和数据库交互的时候,提示ORA-12519ORA-12519
原创 2023-06-16 00:30:43
736阅读
OERR: ORA-12519 TNS:no appropriate service handler found客户端连接间歇性失败,报错ORA-12519Cause: the listener could not find any available service handlers that areappropriate for the client connection.Action: &n
原创 2013-09-02 10:26:31
1906阅读
  以下摘抄自 临风笛 的图书馆,原文链接地址为 http://www.360doc.com/content/11/1227/12/1954236_175298217.shtml 系统正常运行一个月后,上线第一天出现了下列错误,想了很久没有思路。 java.sql.SQLException: Io exception: Connection refused(DESCRI
转载 2012-03-20 16:19:40
3659阅读
ORA-12519, TNS:no appropriate service handler found
原创 2015-06-26 11:25:59
915阅读
解决方法: 1:查看数据库里现有的进程数,是否到达参数processes的大小。select count(*) from v$process; 2:获取进程数的上限。select value from v$parameter where name = 'processes';3.如已达到上限,修改initSID.ora中的processes的大小。先到ORACLE_BASE/admin/你的实例名
原创 2021-07-28 09:50:47
2168阅读
看到这篇帖子提到一个ORA-12519的问题处理:http:
原创 2023-06-16 00:10:43
136阅读
  ORA-12519, TNS:no appropriate service handler found  The Connection descriptor used by the client was:  192.168.1.200:1521
原创 2011-09-12 08:41:53
835阅读
有时候连得上数据库,有时候又连不上.可能是数据库上当前的连接数目已经超过了它能够处理的最大值.selectcount(*) from v$process --当前的连接数select value from v$parameter where name ='processes'--数据库允许的最大连接数修改最大连接数:alter system set processes =300 scope = s
转载 精选 2013-11-03 13:35:15
492阅读
http://java-xp.iteye.com/blog/1682532 ORA-12519: TNS:no appropriate service handler found 解决 数据源换成c3p0后,发现在跑多个测试时出现错误ORA-12519,怀疑是多人同时跑测试时造成连接数过多,又不释放
转载 2017-06-16 22:32:00
71阅读
2评论
有时候连得上数据库,有时候又连不上.可能是数据库
原创 2022-08-17 11:28:09
99阅读
select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允许的最大连接数   修改最大连接数: alter system set processes = 300 scope = spfile;   重启数据库: shutd
转载 精选 2013-04-17 17:03:11
431阅读
最近做项目遇到一个连接Oracle的问题,报错如题:ORA-12519: TNS:no appropriate service ha
原创 2023-05-29 06:42:07
1074阅读
  • 1
  • 2
  • 3
  • 4
  • 5