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: WHICH SID

RE: WHICH SID

From: Jeremiah Wilton <jwilton_at_speakeasy.net>
Date: Wed, 19 Dec 2001 14:44:10 -0800
Message-ID: <F001.003E0BC1.20011219142519@fatcity.com>

Both of these work, but are inefficient for repeated frequent use by an application:

select sid from v$session where audsid= userenv('sessionid'); select sid from v$mystat where rownum = 1;

This is the most efficient:

select ksusenum from x$ksumysta where rownum = 1;

You need to be SYS or have built a view on this with privs from SYS.

--
Jeremiah Wilton
http://www.speakeasy.net/~jwilton

On Wed, 19 Dec 2001, Deshpande, Kirti wrote:


> Way much better :)
> Thanks. I forgot about mystat view..
>
> -----Original Message-----
> Sent: Wednesday, December 19, 2001 3:12 PM
> To: Kirti.Deshpande_at_GTEDC.GTE.com
>
> select distinct SID from v$mystat;
>
> "Deshpande, Kirti" wrote:
> >
> > select sid from v$session
> > where audsid=(select userenv('sessionid') from dual);
> >
> > -----Original Message-----
> > Sent: Wednesday, December 19, 2001 1:36 PM
> > To: Multiple recipients of list ORACLE-L
> >
> > How do find own session id?
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Jeremiah Wilton INET: jwilton_at_speakeasy.net Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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 19 2001 - 16:44:10 CST

Original text of this message

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