Oracle错误解决:ORA
程序员文章站
2022-05-29 11:28:36
...
问题: java.sql.SQLException : Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handlerfound 解决:超过连接数,所以要扩大。在oracle中执行sql语句 select value from v$parameter where name ='proc
问题:java.sql.SQLException: Listener refused the connection with the following error:
ORA-12519, TNS:no appropriate service handlerfound
解决:超过连接数,所以要扩大。在oracle中执行sql语句
select value from v$parameter where name ='processes'; 取得进程数的上限。
alter system set processes = 300 scope =spfile; 重新设置连接数
alter system set sessions=335 scope=spfile; 设置SESSIONS = PROCESSES * 1.1 + 5
重启数据库:
shutdown immediate;
startup;
推荐阅读
-
Oracle 管道 解决Exp/Imp大量数据处理问题
-
SQLSERVER数据库中的5173错误解决方法
-
打开土豆看视频的时候提示错误代码cp0001的五种解决办法
-
安装cad提示1606错误怎么办 autocad报错1606的解决方法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
pip 错误unused-command-line-argument-hard-error-in-future解决办法
-
Linux 出现telnet: 127.0.0.1: Connection refused错误解决办法
-
oracle数据库下五种解决ORA-04031错误问题的方法
-
oracle sga参数改大后导致数据库启动失败怎么解决?