What SQL and sessions are running?
GUIs like TOAD and Enterprise Manager can show this better, but they’re not always to hand. Every session active now or within the last minute is shown.
set pages 9999 lines 132 col username form a20 col osuser form a20 col program form a50 col minutes form 999 alter session set nls_date_format = 'Dy DD-Mon-YYYY HH24:MI:SS' / select distinct s.sid, s.username, s.osuser, s.program||' '||s.module program, s.status, s.last_call_Et/60 minutes, s.logon_time, w.state, w.event, w.seconds_in_wait , q.sql_text from v$session s, v$sql q, v$session_wait w where ( s.status = 'ACTIVE' or last_call_et < 60 ) and s.sql_hash_value = q.hash_value and s.sql_address = q.address and s.sid = w.sid order by s.sid / set pages 9999 lines 80 head on feed 6
Following are errors on 10.2.0.1.0 on WIN XP SP2-