Link to home
Start Free TrialLog in
Avatar of Vinnny
Vinnny

asked on

Oracle - TPM

How do I get the figure Transaction/mintue(TPM)  in our Oracle server right now?

Help me guys.

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of mjkrijgsman
mjkrijgsman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Vinnny
Vinnny

ASKER

Hi mjkrijgsman !

 I understand what saying..but how do you measure
 " a transaction".
I don't understand what 's "a TRANSACTION"  is

I mean, it's actually one update  or
two more updates in two tables...or ..???

I'm not very clear about it.

Thanks very much !
Avatar of Vinnny

ASKER

Basically  what I want is ,

I want to get figure, what  maximum TPM for our ora server with this configuration.

According to that we can go for upgrade..

Note: We run several app.s  on our Ora server on diferent times.


Thanks.

Trasaction consists of statements which are fired against a database. It would generally consists of DML statements ( Select, Insert, Update, Delete ). These statements need to be against a single table, it could be modifying any table in the same database.

To measure a transaction, you have to first determine the amount of work done by evaluating the measures ( howto: see first comment ) of the statments which consists a transaction.

Hope this helps you.
Need more, post a comment.
Sudhi.

www.tpc.org gives you some transactions that you can run for measuring your database performance. But they are very tedious and time consuming.

The benchmark specifications could give you some idea.

HTH
RAK