本文链接:https://blog.csdn.net/bisal/article/details/103077663 家中领导提了个问题,某系统和数据库交互的时候,提示ORA-12519, ? ORA-12519的解释就是找不到合适的服务句柄,当前注册到监听的实例无法接收连接请求, SQL> ! Troubleshooting Guide TNS-12519 TNS-12516 ORA-12519 ORA-12516 (Doc ID 552765.1)介绍,12516/12519错误最常见的原因就是到达了 instance to "blocked" and begin refusing incoming client connections with either of the following errors: ora
ORA-12519: TNS:no appropriate service handler found 解决 有时候连得上数据库,有时候又连不上.
+ 看到这篇帖子提到一个ORA-12519的问题处理: http://blog.csdn.net/diguoguo/article/details/6185536 oerr的解释: 12519, 00000
select count(*) from v$process --当前的连接数 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_fulltext,machine from v$session a, v$sqlarea b where a.sql_address =b.address order by cpu_time/executions desc;
步骤一:首先通过sqlplus登陆数据库,sqlplus / as sysdba 步骤二:查询数据库当前会话的连接数 image.png 步骤三:查看数据库设置的最大连接数和最大session数量 s
今天客户在使用导入Excel功能时,由于底层的数据库连接层框架是自己公司研发的,导致出现问题
如果数据库上连接被占用完,当新的连接过来时,那么就会在客户端产生“ORA-12519, TNS:no appropriate service handler found”的报错信息。
sessions=2205 scope=spfile; 5.重启数据库 SQL>shutdown immediate SQL>startup ORA-12518: TNS: 监听程序无法分发客户机连接 ORA