1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| SQL> select dw.waiting_session, dw.holding_session, b.serial#, w.event, w.program wprogram, b.program bprogram, w.module wmod, b.module bmod, LOCK_ID1 from sys.dba_waiters dw, v$session w, v$session b where dw.waiting_session = w.sid and dw.holding_session = b.sid and (w.module like 'Data Pump%' or w.program like '%EXPDP%' or w.program like '%IMPDP%') order by dw.holding_session;
no rows selected
SQL> select sw.SID, sw.SEQ#, sw.EVENT, sw.WAIT_TIME, sw.SECONDS_IN_WAIT, sw.STATE, sw.P1TEXT, sw.P1, sw.P2TEXT, sw.P2, sw.P3TEXT, sw.P3 from V$SESSION_WAIT sw, v$session s where sw.wait_class <> 'Idle' and sw.sid = s.sid and (s.module like 'Data Pump%' or s.program like '%EXPDP%' or s.program like '%IMPDP%');
SID SEQ ---------- ---------- ---------------------------------------------------------------- ---------- --------------- ------------------- ---------- ---------- ---------- ---------- ---------- ---------- 1801 31734 Streams AQ: enqueue blocked on low memory 0 1 WAITING 0 0 0 2540 3931 Streams AQ: enqueue blocked on low memory 0 1 WAITING 0 0 0
|