오라클 lock 체크 스크립트

· 2007-06-29 (금) 17:54:54 · 4801
오라클에서 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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
07-07-16 조회 3,055
07-07-06 조회 2,915
07-07-06 조회 3,377
07-06-23 조회 3,203
07-06-16 조회 2,686
07-05-20 조회 4,202
07-05-09 조회 3,374
07-05-09 조회 6,021
07-05-04 조회 2,600
07-04-30 조회 9,728
07-04-27 조회 4,253
07-04-26 조회 3,368
07-04-25 조회 5,154
07-04-18 조회 7,704
07-04-13 조회 3,032
07-04-12 조회 6,546
07-04-12 조회 4,949
07-04-12 조회 3,269
07-04-11 조회 5,650
07-04-05 조회 6,299
07-03-24 조회 4,347
07-03-20 조회 3,656
07-03-18 조회 3,899
07-03-18 조회 4,685
07-03-17 조회 4,170
07-03-16 조회 4,078
07-03-15 조회 5,218
07-03-13 조회 5,312
07-03-13 조회 3,514
07-03-08 조회 4,438
07-03-08 조회 3,912
07-03-08 조회 3,225
07-03-08 조회 4,091
07-03-05 조회 4,321
07-03-04 조회 2,852
07-03-01 조회 5,888
07-02-28 조회 3,174
07-02-27 조회 4,338
07-02-26 조회 3,249
07-02-26 조회 2,946
07-02-23 조회 3,597
07-02-23 조회 3,565
07-02-22 조회 3,950
07-02-22 조회 3,744
07-02-19 조회 3,763
07-02-17 조회 4,790
07-02-14 조회 8,095
07-02-12 조회 3,858
07-02-10 조회 3,470
07-02-02 조회 3,700
07-01-31 조회 3,365
07-01-29 조회 3,212
07-01-25 조회 4,987
07-01-21 조회 3,161
07-01-19 조회 2,965
06-12-15 조회 3,954
06-12-15 조회 4,363
06-12-15 조회 2,857
06-12-15 조회 4,411
06-12-15 조회 3,276
06-12-15 조회 3,994
06-12-15 조회 2,960
06-12-15 조회 2,675
06-12-15 조회 4,555
06-12-15 조회 3,108
06-12-15 조회 3,179
06-12-07 조회 4,630
06-12-07 조회 3,922
06-12-04 조회 4,531
06-11-27 조회 3,618
06-11-21 조회 3,929
06-11-15 조회 3,358
06-11-04 조회 3,255
06-10-29 조회 3,908
06-10-13 조회 3,770
06-10-13 조회 4,138
06-10-13 조회 4,088
06-10-12 조회 5,291
06-10-12 조회 4,214
06-10-04 조회 3,697
06-10-02 조회 4,485
06-09-29 조회 2,979
06-09-26 조회 3,315
06-09-26 조회 3,569
06-09-26 조회 3,210
06-09-26 조회 3,369
06-09-26 조회 4,269
06-09-25 조회 4,569
06-09-22 조회 4,882
06-09-22 조회 3,465
06-09-21 조회 4,203
06-09-21 조회 4,193
06-09-21 조회 3,474
06-09-21 조회 5,137
06-09-21 조회 3,639
06-09-21 조회 3,402
06-09-20 조회 2,937
06-09-15 조회 3,073
06-09-13 조회 3,374
06-09-11 조회 3,194