Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Finding User sessions = idle > 30 min??

RE: Finding User sessions = idle > 30 min??

From: Naveen Nahata <naveen_nahata_at_mindtree.com>
Date: Wed, 11 Dec 2002 02:14:01 -0800
Message-ID: <F001.005174D4.20021211021401@fatcity.com>


Won't 'seconds_in_wait' show the total time waited for the session rather than the current wait time?

regards
Naveen

-----Original Message-----
Sent: Tuesday, December 10, 2002 8:05 PM To: Multiple recipients of list ORACLE-L

Denham - I'm going to make a guess here and someone will probably correct me. How about

   select sid from v$session_wait where event = 'SQL*Net message from client' and seconds_in_wait > 1800
You can join to other tables like V$SESSION to get more information.

Dennis Williams
DBA, 40%OCP
Lifetouch, Inc.
dwilliams_at_lifetouch.com

-----Original Message-----
Sent: Tuesday, December 10, 2002 7:19 AM To: Multiple recipients of list 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.


DISCLAIMER This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. TFMC, its holding company, and any of its subsidiaries each reserve the right to monitor and manage all e-mail communications through its networks.

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 views of any such entity.



This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal - For more information please visit <http://www.marshalsoftware.com> www.marshalsoftware.com


--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: DENNIS WILLIAMS
  INET: DWILLIAMS_at_LIFETOUCH.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).

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Naveen Nahata
  INET: naveen_nahata_at_mindtree.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). Received on Wed Dec 11 2002 - 04:14:01 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US