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 -> Re: any way to know how old a transaction is

Re: any way to know how old a transaction is

From: Dave Hau <davehau_nospam_123_at_nospam_netscape.net>
Date: Tue, 11 Nov 2003 02:47:00 GMT
Message-ID: <3FB04DA4.5030303@nospam_netscape.net>


v$transaction.start_time

e.g.

select a.start_time, b.sid, b.username
from v$transaction a, v$session b
where a.ses_addr = b.saddr;

HTH,
Dave

rpr wrote:
> Hi,
> Is there a way for me to know how old an uncommitted transaction is.
> Meaning since how long it is there and uncommitted. Thank you
Received on Mon Nov 10 2003 - 20:47:00 CST

Original text of this message

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