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: transactions per time period

Re: transactions per time period

From: <oratune_at_aol.com>
Date: Tue, 12 Sep 2000 19:04:47 GMT
Message-ID: <8pluo0$6bf$1@nnrp1.deja.com>

In article <8pls4q$cng$1_at_solaris.cc.vt.edu>,   stellr_at_stell.cns.vt.edu (Ray Stell) wrote:
> Is there a view/table that will give the number of transactions
> per period of time?
>

Presuming that you are currently running 8i (8.1.5, 8.1.6) there is a view named V$TRANSACTION where this information would be available:

select count(*)
from v$transaction
where start_time between '...' and '...';

Check your installation for the data format of the START_TIME column; it is declared as a VARCHAR2(16).

--
David Fitzjarrell
Oracle Certified DBA


Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Tue Sep 12 2000 - 14:04:47 CDT

Original text of this message

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