vote up 5 vote down star
1

I'm looking for the single biggest reason you are glad that you've already made the jump from SQL2000 to SQL2005.

flag
1  
2005? Why not jump to 2008 at this point? – Rich B Sep 26 '08 at 17:18
Excellent point. The main reason for not is 2005 has more "burn in" in the eyes of IT. 2008 still has that fresh app smell. :) – Craig Sep 26 '08 at 17:20
@Craig: Perhaps, but to target an intermediate step to a 3 year old product is kind of dumb IMO. Stick with 2000 for a little longer and wait for 2008's first SP. That is the point I normally switch. – Rich B Sep 26 '08 at 17:35
+1 to going straight to SQL2008 – DJ Feb 6 at 22:56

15 Answers

vote up 0 vote down

PIVOT. That beautiful little statement has saved me more time then any other SQL Server 2005 enhancement.

link|flag
vote up 0 vote down

Dynamic Management Views for Optimisation and to quickly find out the state of the server.

link|flag
vote up 1 vote down

Exception handling... how did we ever manage on SQL 2000...?

link|flag
vote up 1 vote down
  1. SSRS - A really huge advantage for my organization is having the free reporting tools that come with SQL Server 2005. Reporting Services allows me to produce nice looking reports that have exactly the fields that our managers need in very little time. It has a built in tool so they can convert to excel, pdf, or several other formats. Lots of value here.

  2. SSIS - Integration services in 2005 is very powerful for ETL (export, transform, load) functions. You can set up automated processes to run on a schedule.

  3. SSAS - Analysis services looks promising. I have not made any data cubes yet because I want to organize an actual data warehouse. Once you have that, robust data mining algorithms are already built in.

Take a look at these three tools that are included with SQL Server 2005. If i had to pick one as the single biggest reason to move to 2005, it would be SSRS.

At this point, I would suggest looking at SQL Server 2008.

link|flag
vote up 0 vote down

YOU CAN'T EXPORT TABLES with a "right click" anymore. This is more of a problem than a good reason.

link|flag
vote up 1 vote down

Common Table Expressions have proven incredibly useful.

link|flag
vote up 1 vote down

I don't know if it's just me, but Linq2SQL doesn't exactly work perfectly with SQL 2000. Ordinarily its supposed to automatically generate and populate child collections based on inferences from your schema's keys, foreign keys, RI, etc. Works fine in 2005 but i haven't had much luck in 2000.

link|flag
vote up 1 vote down

I think the single biggest reason is that SQL 2000 is not supported on Vista. I had to move to SQL 2005 because of that.

link|flag
vote up 1 vote down

Row Versioning-Based Transaction Isolation

link|flag
vote up 1 vote down

CLR integration

link|flag
vote up 1 vote down

Pagination without (manually) creating temporary tables is a basic, but huge improvement.

However, if you are then going to drag & drop some GridViews in your ASP.NET app directly from the data table, you'd be paging in the app...

link|flag
vote up 2 vote down

Because:

Microsoft would like to remind customers that support for SQL Server 2000 Service Pack 3a (SP3a) will end on July 10, 2007.

link|flag
vote up 4 vote down
  • Recursion without creating temporary tables.
  • Native Exception support (Try/Catch instead of if @Error goto)
link|flag
vote up 2 vote down

SSIS support. Blows DTS away and is quite handy. :)

link|flag
Actually, I found DTS far easier to use for ad hoc data conversion – Ken Ray Sep 26 '08 at 17:31
vote up 2 vote down

Native XML support is big for us here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.