java连接oracle数据库,更新表的字段,当更新到2000条左右时就报错(每次报错时更新的条数不定,但是不会太少),重新运行程序后还是会报错导致更新停止。
Could not get JDBC Connection; nested exception is java.sql.SQLException: Listener refused the connection with the following error:
ORA-12519, TNS:no appropriate service handler found
The Connection descriptor used by the client was:
.......
重启了oracle服务 ,还是会报错;重启MyEclipse ,重新连接数据库还是报错。一直运行好好的数据库为什么更新时就会报错呢,只能具体去看报错的信息:
ORA-12519, TNS:no appropriate service handler found ----“客户端连接间歇性失败,报错ORA-12519”
原来是因为之前都是少数据的增删改查,这次要对一万多条数据进行更新,数据量太大导致的。
可以通过下面的方式操作:
--当前连接数
select count(*) from v$process;
--允许最大连接数 (默认是150)
select value from v$parameter where name = 'processes';
//下面这两个也可以查到相关信息
SHOW PARAMETER SESSION; (查询session信息,我的session是170)
SHOW PARAMETER PROCESS;(查询processes信息)
--修改最大连接数(把processes改成500就好了)
alter system set processes = 500 scope = spfile;
记得一定要重启oracle服务,再运行 sql命令 select value from v$parameter where name = 'processes'; 看看processes是不是500.
参考网站:http://itlab.idcquan.com/Oracle/exploiture/889718.html