Tracking the Rate of Transactions Entering the Deferred Transactions Queue
SQL will dispaly rate of x’actions entering at DEFTRAN Queue for last Hour
SQL> select to_char(trunc(start_time,’MI’),’DD-MON-YY HH24:MI:SS’),count(*) from deftran where start_time > sysdate -(1/24)
group by to_char(trunc(start_time,’MI’),’DD-MON-YY HH24:MI:SS’)
order by 1 descTO_CHAR(TRUNC(STAR COUNT(*)
—————— ———-
15-DEC-08 20:32:00 1481
15-DEC-08 20:31:00 2510
15-DEC-08 20:30:00 2482
15-DEC-08 20:29:00 2543
15-DEC-08 20:28:00 2468
15-DEC-08 20:27:00 2458
15-DEC-08 20:26:00 2490
15-DEC-08 20:25:00 2505
15-DEC-08 20:24:00 2488
15-DEC-08 20:23:00 2443
15-DEC-08 20:22:00 2532
15-DEC-08 20:21:00 2555
15-DEC-08 20:20:00 2485
15-DEC-08 20:19:00 757SQL> SELECT (R.TXNS_ENQUEUED / ((SYSDATE – I.STARTUP_TIME)*24*60*60)) “Average TPS”
2 FROM V$REPLQUEUE R, V$INSTANCE I;Average TPS
———–
3.01341941
Leave a Reply
You must be logged in to post a comment.