You are on page 1of 1

set lines 200 pages 200

col state for a15


col seq# for 999999
col P1_P2_P3_TEXT for a30
col event for a20
select w.sid, to_char(p.spid,'99999') PID,
substr(w.event, 1, 28) event, substr(s.username,1,8) username,
substr(s.osuser, 1,8) osuser,
substr(s.state,1,10),
s.seq#,
s.wait_time, s.seconds_in_wait wis,
substr(w.p1text||' '||to_char(w.P1)||'-'||
w.p2text||' '||to_char(w.P2)||'-'||
w.p3text||' '||to_char(w.P3), 1, 45) P1_P2_P3_TEXT
, s.sql_hash_value
from v$session_wait w, v$session s, v$process p
where s.sid=w.sid
and p.addr = s.paddr
and w.event not in ('SQL*Net message from client', 'pipe get')
and s.username is not null
/

You might also like