ORA-12519, TNS:no appropriate service handler found

ORA-12519, TNS:no appropriate service handler found(转)

遇到这种错误,一般是因为并发过大引起的。

查询解决方法:

查看一下数据库现有的进程数,是否已经达到参数processes的大小。

1.select count(*) from v$process;                         取得数据库目前的进程数。
2.select value from v$parameter where name = 'processes'; 取得进程数的上限。
3.如已达到上限,修改initSID.ora中的processes的大小。
4.重新启动数据库到nomount状态下,执行create spfile from pfile; 并startup open。


查询数据库自启动以来最大的并发数量

select * from v$license

你可能感兴趣的:(ORA-12519, TNS:no appropriate service handler found)