本文介绍了ORA-12518, TNS:listener 无法切换客户端连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 windows 环境中使用 ORACLE 数据库并在 tomcat 中运行 JSP/servlet web 应用程序.在我对应用程序进行一些操作后,它给了我以下错误.

I am using ORACLE database in a windows environment and running a JSP/servlet web application in tomcat. After I do some operations with the application it gives me the following error.

ORA-12518,TNS:侦听器无法切换​​客户端连接

谁能帮我找出这个问题的原因并提出解决方案?

can any one help me to identify the reason for this problem and propose me a solution?

推荐答案

这个问题的解决办法是增加进程数:

The solution to this question is to increase the number of processes :

1. Open command prompt
2. sqlplus / as sysdba; //login  sysdba user
3. startup force;
4. show parameter processes;  // This shows 150(some default) processes allocated, then increase the count to 800
5. alter system set processes=800 scope=spfile;

经过尝试和测试.

这篇关于ORA-12518, TNS:listener 无法切换客户端连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 13:09
查看更多