欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【已解决】ORA-12519 TNS: no appropriate service handler found

程序员文章站 2024-02-24 11:45:46
...

【已解决】ORA-12519 TNS: no appropriate service handler found

我遇到的这个问题是因为实际进程数超出Oracle所允许的最大值。

解决方法:

以系统管理员身份登陆数据库

$ sqlplus / as sysdba;
> select count(*) from v$process; --查询当前连接数
> --查询数据库允许的最大连接数  
> select value from v$parameter where name = 'processes'; 
> --修改最大连接数为500,也可以是其他值
> alter system set processes = 500 scope = spfile; 

最后重启Oracle数据库

> shutdown immediate; --关闭数据库
> startup; --打开数据库