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

Home -> Community -> Usenet -> c.d.o.server -> JDBC leak

JDBC leak

From: Pascal Byrne <nospam_at_nospam.com>
Date: Fri, 12 Apr 2002 18:06:36 GMT
Message-ID: <3CB72201.8070405@nospam.com>


I need to find the UNIX PID associated with each session for Java JDBC applications, so I can catch an application which is opening Oracle connections without closing them. I tried the following:

    select s.username, s.sid, p.spid, s.process     from v$session s, v$process p
    where s.paddr = p.addr;

The process column was empty however for the Java connections.

So is there another way of getting this information? (I am using Java 1.2, Linux and Oracle 8.1.7).

Thanks,
pascal Received on Fri Apr 12 2002 - 13:06:36 CDT

Original text of this message

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