Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Does inactive sessions consume RAM
>Hi list,
>I have an instance with many inactive sessions because my users always
>forgot to disconnect from db.
>Does thoses sessions consume RAM or any resources ?
>How can I prove it ? (which v$?)
Every session occupies some memory.
This script tells you the memory usage by a session
select s.sid, n.name, s.value
from v$sesstat s, v$statname n, v$session sess
Regards
Naveen
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Thu May 27 2004 - 02:48:05 CDT
![]() |
![]() |