2014. 12. 4. 10:05

ORA-12519 오류메세지

Oracle- 12519 에러시 아래와 같이 Max Processes 개수를 늘려주면된다.

-오류
java.sql.SQLException:Listener refused the connection with the following error : 
ORA-12519, TNS:no appropriate service hander found



- 처리

show parameter processes


기본값

processes                            integer
150



- 위의 값을 아래의 쿼리문을 사용하여 일정수준으로 변경해준다.

   난 200 으로 해줬다.


alter system set processes=200 scope=spfile;


변경된값

processes                            integer
200



에러현상은 개발자 DB 에 접속하는 Connection Process 의 개수가 n개이고 개발하는 사람수 * 개발자 1명당 DB에 접속하는 Connection Process 의 개수가 DBMS 의 Max Process 설정값을 넘어가는 경우에 발생한다고 한다.