vote up -4 vote down star

Hi.... Please tell me the differences between sql server 2005 and sql server 2008

flag

48% accept rate

closed as not a real question by Mitch Wheat, Cade Roux, Matt Rogish, Robert S., Cruachan Apr 10 at 15:21

8 Answers

vote up 0 vote down

Here's a video overview that will give you a good idea of the major improvements and areas of change:

http://www.sqlservervideos.com/series/what-is-new-in-sql-server-2008

And there are other similar videos that deal with some of the features a bit more in depth.

link|flag
vote up 0 vote down

2008-2005 = 3

The difference is 3.

Sorry, I had to. :)

link|flag
vote up 0 vote down

Some differences while writing code:

In sql server 2008 you do:

declare @DbName varchar(256)=@data.value('(/EVENT_INSTANCE/DatabaseName)[1]', 'varchar(256)')

In sql server 2005 you do:

declare @DbName varchar(256)
set @DbName = @data.value('(/EVENT_INSTANCE/DatabaseName)[1]', 'varchar(256)')

Sql server 2008 has the merge statement'

2005 set @var = @var + 1 2008 @var += @anotherVar

link|flag
vote up 0 vote down

Please explain what you're looking for.

  • New features?
  • Performance differences?
  • Security-related changes?
  • Administration-related changes?
link|flag
vote up 6 vote down

Did you visit Whats New to see the new features? Or even the Product Overview Sheet?

link|flag
vote up 0 vote down

Some: Hierarchyid, some date/time datatypes, changes in compressing databases They are a few, you'll find surely a far more complete list when you have a short search in google

link|flag
vote up 4 vote down

I have nothing to say.

link|flag
The question has been closed. Can we omit the edit war? – John Saunders Jun 23 at 22:50
vote up 3 vote down

Google says Katmai, I say 3

link|flag
2008 - 2005 = 3. Cute. Insightful. In more detail, "they didn't sit around doing nothing for three years" – John Saunders Apr 7 at 11:43
and flipant, why didn't sevugarajan check google? – MrTelly Apr 7 at 12:15

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