Query to find out the status of the undo and temp tablespace usage currently at the time of process execution
For undo ———— set lines 130 col SID_SERIAL format a20 col PROGRAM format a25 col Undo format a30 SELECT TO_CHAR(s.sid)||’,’||TO_CHAR(s.serial#) sid_serial, NVL(s.username, ‘None’) orauser, s.program, r.name undoseg, t.used_ublk * TO_NUMBER(x.value)/1024||’K’…
Read More