how to measure the Performance improvement [message #221484] |
Tue, 27 February 2007 02:41 |
buck444
Messages: 80 Registered: January 2006 Location: Luxembourg
|
Member |
|
|
Hello,
i did an export from Oracle8.1.7 to 10GR2. The 10GR2 is on a new Server, so the 8.1.7 is still running.
I would like to measure the improvement.
I thought about just to make something like this:
NEW SERVER:
SQL> set timing on
SQL> select count(*) from trans;
COUNT(*)
---------
1034319
Executed in 0.437 seconds
------------------------------------------------------
OLD SERVER:
SQL> set timing on
SQL> select count(*) from trans;
COUNT(*)
---------
1035552
Executed in 1.766 seconds
So one possibly conclusion could be that the new DB is 4x faster than the old one.
But i'm guessing there must be some more sophisticated testing procedure?!
Does someone has any idea how i could prove and test the performance of the new DB?
thanks very much.
|
|
|
|
|
|
|