解决 ORA-12519, TNS:no appropriate service handler found

来源:互联网 发布:阿克曼函数c语言 编辑:程序博客网 时间:2024/05/03 22:30
ORA-12519, TNS:no appropriate service handler found

The Connection descriptor used by the client was:


MyEclipse经常报这个错,原因是连接数太小了


查看当前的连接数

select value from v$parameter where name = 'processes'; 


重新设置连接数

alter system set processes = 300 scope = spfile;

重启数据库
shutdown immediate;
startup;

原创粉丝点击