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: monitoring uncommited transactions?

Re: monitoring uncommited transactions?

From: <sanji_aqua_at_my-deja.com>
Date: Tue, 05 Dec 2000 13:35:26 GMT
Message-ID: <90iquu$b4$1@nnrp1.deja.com>

v$transaction will solve yer prob.

Following example explains the scenario

SQL> select * from v$transaction;

no rows selected

SQL> insert into one values(1,sysdate);

1 row created.

SQL> select * from v$transaction;

ADDR XIDUSN XIDSLOT XIDSQN UBAFIL UBABLK

---- ---------- ---------------- --------------------
02E832D4          2         11        623          2      14449

SQL> commit;

Commit complete.

SQL> select * from v$transaction;

no rows selected

Sent via Deja.com http://www.deja.com/
Before you buy. Received on Tue Dec 05 2000 - 07:35:26 CST

Original text of this message

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