Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

2005 any faster than 2000?

Status
Not open for further replies.
Not yet, but shortly. I'll post when I've got some info. I've got a 2005 cluster that we are installing tomorrow and a 2000 cluster that are both on identical hardware so I should be able to get some decent info.

Denny
MCSA (2003) / MCDBA (SQL 2000)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Chiph:
for me querying speed
but inserts are nice too
i KNOW SSIS is faster than DTS



George Walkey
Senior Geek in charge
 
Here's my config. I've got two, two node clusters setup.

Each are 4 proc servers running Windows 2003 AS.
Cluster1 is running SQL 2005
Cluster2 is running SQL 2000
All 4 nodes have 4 GB of RAM
All 4 nodes have 3.33 Ghz Intel Processors with HT enabled
AWE settings are the same on both servers, and both servers are allowed to use up to 3515 MB of RAM.
SQL Storage is on a SAN.
All 4 nodes are identical servers and were purchased within 1 week of each other.

Here is what I saw:
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%

While these are some basic results they are interesting.

Denny
MCSA (2003) / MCDBA (SQL 2000)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top