* 오라클 DB 입력이 일정시간동안 없을 때 연결이 끊기는 현상


확인해야 할 것
1)
select PROFILE
     , RESOURCE_NAME
     , RESOURCE_TYPE
     , LIMIT
from dba_profiles
where profile = 'DEFAULT'
order by 1,2;

결과에서 IDLE_TIME 이 15일 경우 15분 동안 입력 없을 시 끊김

 


2)
select VALUE from v$parameter where name = 'resource_limit'

결과에서 TRUE일 경우 일정시간동안 입력 없을 시 연결 끊김


* 변경 방법
1) IDLE_TIME 을 UNLIMITED로 수정
alter profile default limit idle_time UNLIMITED;


--IDLE_TIME 을 1분으로 수정 쿼리
--alter profile default limit idle_time 1;

2)resource_limit 수정
alter system set resource_limit = FALSE;

+ Recent posts