반응형
오라클 프로세스 확인하기
생성된지 2분 이상된 프로세스 확인하기
select b.ROW_WAIT_OBJ#, a.spid ,c.sql_text,b.SID, b.SERIAL#,b.machine,b.OSUSER,b.logon_time,b.paddr
from v$process a, v$session b, v$sqltext c
where a.addr = b.paddr
and b.sql_hash_value = c.hash_value
and B.machine ='머신이름'
and b.logon_time < (select sysdate-(1/24/10) from dual)
--and a.spid = 8016
order by logon_time asc, a.spid asc, C.PIECE asc
프로세스 죽이기
ALTER SYSTEM KILL SESSION 'sid,#serial';
반응형
'프로그래밍 > oracle' 카테고리의 다른 글
oracle - 오라클에서 힌트(Hint) 사용 예제 (0) | 2012.08.17 |
---|---|
oracle - 오라클 프로시저 목록보기 (0) | 2012.08.17 |
oracle - 오라클 트리거 (0) | 2012.08.17 |
oracle - 오라클 옵티마이저의 기본 원리 (0) | 2012.08.17 |
오라클 실행계획(explan table) 보기. (0) | 2012.08.17 |