오라클 lock 체크 스크립트

· 2007-06-29 (금) 17:54:54 · 5236
오라클에서 lock체크 스크립트 입니다.
작업 시간이 오래걸리는 spid 찾아주는 쿼리문 입니다.
 

select /*+ ordered / distinct /* 속도를 위해 v$sql을 조인할 경우 중복되는 레코드 제거 */
           s.sid SID, s.username, s.program, p.spid "OS-Pid",w.seconds_in_wait as "W_time(Sec)",
          decode(w.wait_time,0,'Wai-ting', 'Waited') Status, w.ename event,
--              p1text || ':' || decode(event,'latch free',p1raw, to_char(p1)) ||','||
--              p2text || ':' || to_char(p2) ||','|| p3text || ':' || to_char(p3) "Additional Info",
           q.sql_text
from ( select a.*, decode(a.event,'latch free', 'latch free (' ||b.name||')',
                                         'row cache lock', 'row cache lock (' || c.parameter || ')',
                                         'enqueue', 'enqueue ('||chr(bitand(p1, -16777216)/16777215)||
                                                                             chr(bitand(p1,16711680)/65535)||':'||
                                                decode(bitand(p1,65535), 1, 'N', 2, 'SS',3,'SX',4,'S',5,'SSX',6,'X') ||')',
                              a.event ) ename
           from v$session_wait a, v$latchname b, v$rowcache c
         where a.p2 = b.latch#(+) and a.p1 = c.cache#(+) and c.type(+) = 'PARENT'
           and a.event not in ('rdbms ipc message','smon timer','pmon timer','slave wait','pipe get','null event',
                                     'SQL*Net message from client', 'SQL*Net message to client','PX Idle Wait',
                                      'PX Deq: Execution Msg', 'KXFQ: kxfqdeq - normal deqeue',
                                         'ges remote message', 'wakeup time manager', /* idle event 적절히 수정 */
                                         'lock manager wait for remote message', 'single-task message')
        ) w, v$session s, v$process p, v$sql q
where w.sid = s.sid and s.paddr = p.addr
and s.sql_hash_value = q.hash_value(+) and s.sql_address = q.address(+)
order by w.ename;
[이 게시물은 관리자님에 의해 2011-10-31 16:47:36 Oracle에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
MySQL 07-07-02 조회 5,776
MySQL 07-06-30 조회 5,338
기타 07-06-29 조회 5,237
기타 07-06-29 조회 5,195
PHP 07-06-28 조회 4,008
JavaScript 07-06-23 조회 3,679
기타 07-06-21 조회 4,084
MySQL 07-06-20 조회 1만
MySQL 07-06-20 조회 4,792
기타 07-06-20 조회 5,728
기타 07-06-19 조회 2,878
Flash 07-06-19 조회 1.2만
Flash 07-06-17 조회 3,761
JavaScript
[JavaScript]
07-06-16 조회 2,960
Flash 07-06-15 조회 5,167
기타 07-06-12 조회 4,653
기타 07-06-11 조회 3,734
PHP 07-06-05 조회 4,045
PHP 07-06-05 조회 4,727
MySQL 07-06-05 조회 4,689
기타 07-06-05 조회 5,465
Flash 07-05-31 조회 3,156
PHP 07-05-30 조회 4,117
MySQL
[MySQL]
07-05-26 조회 3,812
JavaScript 07-05-20 조회 4,601
기타 07-05-18 조회 6,531
기타 07-05-18 조회 4,405
MySQL 07-05-17 조회 1.3만
MySQL 07-05-17 조회 6,720
기타 07-05-17 조회 3,858