Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
First I was inserting 1000 records one at a time, then deleting 1000 records one at a time. Each server was allowed to run for 31.5 minutes.
SQL 2000 - 454,018 Records in 31.5 minutes
SQL 2005 - 586,496 Records in 31.5 minutes
SQL 2005 was able to insert and delete an additional 132,478 records.
I then ran a basic select statement to see how the execution plans on each server would function. The query was:
select count(*), min(d), max(d), avg(d)
from Table1
SQL 2000
Number of Selects: 3
Rows returned by Selects: 5
Total Execution Time: 31 ms
SQL 2005
Number of Selects: 2
Rows returned by selects: 2
Total Execution Time: 15 ms
CPU Speed:
SQL 2000 - 10-11%
SQL 2005 - 10-14%