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

Home -> Community -> Usenet -> c.d.o.misc -> Re: track session activity

Re: track session activity

From: <sybrandb_at_yahoo.com>
Date: 14 Sep 2005 05:50:05 -0700
Message-ID: <1126702205.484294.224740@g14g2000cwa.googlegroups.com>


SELECT SID, SERIAL#,PROGRAM -- ETC
FROM V$SESSION S, V$PROCESS P
WHERE S.PADDR= P.ADDR
AND P.SPID = <the pid of threadid of the affected process>

Background processes can be listed by using v$bgprocess.

-- 
Sybrand Bakker
Senior Oracle DBA
Received on Wed Sep 14 2005 - 07:50:05 CDT

Original text of this message

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