Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Finding User sessions = idle > 30 min??
Thanks to all who have contributed.
Here is a solution based on Raj's email.
Pls let me know if I am barking up the wrong tree..
SELECT SID, SERIAL#, USERNAME, (LAST_CALL_ET / 60), LAST_CALL_ET, LOGON_TIME
FROM v$session
WHERE username IS NOT NULL
AND (LAST_CALL_ET / 60) > 30
AND STATUS = 'INACTIVE';
Thanks
Denham
-----Original Message-----
Sent: Tuesday, December 10, 2002 4:55 PM
To: Multiple recipients of list ORACLE-L
Denham,
How about using status='INACTIVE' and last_call_et > 30 minutes?
Regards
Raj
Denham Eva <EvaD_at_TFMC.co To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> .za> cc: Sent by: Subject: Finding User sessions = idle > 30 min?? root_at_fatcity. com December 10, 2002 08:18 AM Please respond to ORACLE-L
Hello All,
Please help - I am trying to find/create a script that will return all user sessions whose Idle time is greater than 30 minutes.
ie
SELECT SID, SERIAL#
FROM V$SESSION
" WHERE IDLE_TIME > 30 min;"
My forays into the Documentation and searches have not been very
successful.
I don't really want to do this via the roles IDLE_TIME setting, I very much
would like to be able to query directly to the database.
Based on the information I would then make the decision to kill the user
process etc.
Just in case you might be interested it is Oracle 817 DB on Windows 2k.
Best Regards
Denham Eva
Oracle DBA
"UNIX is basically a simple operating system, but you have to be a genius
to understand the simplicity."
Dennis Ritchie.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: Rajesh.Rao_at_jpmchase.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorized to state them to be the views of any such entity.
For more information please visit www.marshalsoftware.com
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Denham Eva
INET: EvaD_at_TFMC.co.za
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Dec 11 2002 - 03:39:43 CST
![]() |
![]() |