오라클 lock 체크 스크립트

· 18년 전 · 3999
오라클에서 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,614
18년 전 조회 4,000
18년 전 조회 3,556
18년 전 조회 3,659
18년 전 조회 4,171
18년 전 조회 4,623
18년 전 조회 4,570
18년 전 조회 2,985
18년 전 조회 2,635
18년 전 조회 3,544
18년 전 조회 3,465
18년 전 조회 3,628
18년 전 조회 3,563
18년 전 조회 5,218
18년 전 조회 5,511
18년 전 조회 3,704
18년 전 조회 3,004
18년 전 조회 3,251
18년 전 조회 2,578
18년 전 조회 2,383
18년 전 조회 2,330
18년 전 조회 3,353
18년 전 조회 2,631
18년 전 조회 2,682
18년 전 조회 2,349
18년 전 조회 2,715
18년 전 조회 3,459
18년 전 조회 4,403
18년 전 조회 3,647
18년 전 조회 2,318
18년 전 조회 2,264
18년 전 조회 3,160
18년 전 조회 1,951
18년 전 조회 2,310
18년 전 조회 2,587
18년 전 조회 2,469
18년 전 조회 2,568
18년 전 조회 4,322
18년 전 조회 2,096
18년 전 조회 4,666
18년 전 조회 3,233
18년 전 조회 2,530
18년 전 조회 3,569
18년 전 조회 3,194
18년 전 조회 3,134
18년 전 조회 5,923
18년 전 조회 2,582
18년 전 조회 3,732
18년 전 조회 3,628
18년 전 조회 4,000
18년 전 조회 3,561
18년 전 조회 2,744
18년 전 조회 2,407
18년 전 조회 2,841
18년 전 조회 6,402
18년 전 조회 3,059
18년 전 조회 4,857
18년 전 조회 2,325
18년 전 조회 1만
18년 전 조회 2,787
18년 전 조회 1,865
18년 전 조회 3,296
18년 전 조회 3,216
18년 전 조회 3,120
18년 전 조회 2,434
18년 전 조회 2,616
18년 전 조회 3,163
18년 전 조회 3,253
18년 전 조회 4,425
18년 전 조회 6,403
18년 전 조회 2,358
18년 전 조회 2,469
18년 전 조회 2,170
18년 전 조회 1,928
18년 전 조회 2,895
18년 전 조회 1,959
18년 전 조회 1,827
18년 전 조회 5,020
18년 전 조회 2,075
18년 전 조회 2,119
18년 전 조회 2,117
18년 전 조회 2,249
18년 전 조회 3,903
18년 전 조회 1,934
18년 전 조회 1,801
18년 전 조회 1,622
18년 전 조회 2,130
18년 전 조회 2,165
18년 전 조회 3,939
18년 전 조회 2,258
18년 전 조회 3,414
18년 전 조회 5,029
18년 전 조회 3,165
18년 전 조회 8,350
18년 전 조회 4,342
18년 전 조회 3,046
18년 전 조회 1,816
18년 전 조회 2,915
18년 전 조회 5,329
18년 전 조회 5,497