오라클 lock 체크 스크립트

· 18년 전 · 4011
오라클에서 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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
18년 전 조회 4,625
18년 전 조회 4,018
18년 전 조회 3,568
18년 전 조회 3,673
18년 전 조회 4,182
18년 전 조회 4,635
18년 전 조회 4,581
18년 전 조회 3,001
18년 전 조회 2,647
18년 전 조회 3,557
18년 전 조회 3,475
18년 전 조회 3,643
18년 전 조회 3,570
18년 전 조회 5,225
18년 전 조회 5,527
18년 전 조회 3,720
18년 전 조회 3,018
18년 전 조회 3,262
18년 전 조회 2,596
18년 전 조회 2,396
18년 전 조회 2,342
18년 전 조회 3,367
18년 전 조회 2,639
18년 전 조회 2,688
18년 전 조회 2,359
18년 전 조회 2,726
18년 전 조회 3,469
18년 전 조회 4,415
18년 전 조회 3,659
18년 전 조회 2,333
18년 전 조회 2,277
18년 전 조회 3,175
18년 전 조회 1,963
18년 전 조회 2,316
18년 전 조회 2,604
18년 전 조회 2,478
18년 전 조회 2,577
18년 전 조회 4,335
18년 전 조회 2,109
18년 전 조회 4,674
18년 전 조회 3,246
18년 전 조회 2,540
18년 전 조회 3,577
18년 전 조회 3,209
18년 전 조회 3,142
18년 전 조회 5,934
18년 전 조회 2,588
18년 전 조회 3,739
18년 전 조회 3,634
18년 전 조회 4,012
18년 전 조회 3,570
18년 전 조회 2,753
18년 전 조회 2,418
18년 전 조회 2,850
18년 전 조회 6,412
18년 전 조회 3,068
18년 전 조회 4,866
18년 전 조회 2,335
18년 전 조회 1만
18년 전 조회 2,794
18년 전 조회 1,874
18년 전 조회 3,306
18년 전 조회 3,221
18년 전 조회 3,128
18년 전 조회 2,443
18년 전 조회 2,622
18년 전 조회 3,174
18년 전 조회 3,259
18년 전 조회 4,429
18년 전 조회 6,413
18년 전 조회 2,369
18년 전 조회 2,477
18년 전 조회 2,183
18년 전 조회 1,932
18년 전 조회 2,906
18년 전 조회 1,967
18년 전 조회 1,832
18년 전 조회 5,030
18년 전 조회 2,082
18년 전 조회 2,123
18년 전 조회 2,126
18년 전 조회 2,254
18년 전 조회 3,914
18년 전 조회 1,940
18년 전 조회 1,808
18년 전 조회 1,628
18년 전 조회 2,139
18년 전 조회 2,173
18년 전 조회 3,946
18년 전 조회 2,265
18년 전 조회 3,420
18년 전 조회 5,040
18년 전 조회 3,172
18년 전 조회 8,361
18년 전 조회 4,357
18년 전 조회 3,053
18년 전 조회 1,823
18년 전 조회 2,926
18년 전 조회 5,339
18년 전 조회 5,508