I need to monitor the users of the users and if it reaches a certain amount of aciosity I overthrow ... can do this Based on the result of this select?
select v$session.sid, v$session.serial#, v$session.user#, v$session.username, v$session.osuser,
v$session_wait.seconds_in_wait,v$session.status, v$session_wait.state
from
v$session, v$session_wait
where
v$session.sid = v$session_wait.sid and
v$session.status in ('INACTIVE', 'KILLED')
grateful
[] 's