Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: measuring TPM
And these would be CPM (commits per minute) and RPM (rollbacks per minute).
If you really want a transaction, you have to code it yourself, otherwise all you can get is CPM and RPM.
If your transactions_per_minute ( or commits_per_minute) is low use this handy script to bump it up.
create table my_dual as select * from dual
/
begin
for i in 1 .. 1000
loop
insert into my_dual values(i);
commit;
delete from my_dual;
commit;
end loop;
end;
/
add salt and pepper to taste, serve with nice red wine, enjoy.
Raj
-----Original Message-----
Mladen Gogala
Sent: Wednesday, January 28, 2004 11:09 AM
To: Multiple recipients of list ORACLE-L
Well, as you are well aware of, you cannot measure without impacting. I know of the following methods:
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Jan 29 2004 - 10:09:27 CST
![]() |
![]() |