반응형
저자: K Chithra
1시간 이상 유휴(idle) 상태인 세션을 발견하여 해당 세션을 죽이는 스크립트에 대해 살펴보도록 하자.
select sid,serial#,username,trunc (last_call_et/3600,2)||' hr' last_call_et from V$session where last_call_et > 3600 and username is not null / |
여기서 last_call_et의 단위는 '초'이다. 따라서 where 절에 2시간이면 7200을 적어주면 된다. 만일 그런 세션을 죽이고자 한다면 다음과 같은 명령을 사용할 수 있다.
alter system kill session '<sid>,<serial#>'; |
[출처] 1시간 이상 유휴(idle) 상태인 세션 알아내는 스크립트 |작성자 진카자마
반응형