vote up 0 vote down star

Issue: Using the detach/attach SQL database from a SQL 2000 SP4 instance to a much beefier SQL 2005 SP2 server.

Run reindex, reorganize and update statistics a couple of times, but without any success.

Queries on SQL 2000 took about 1-2 sec. to complete, now the same queries take 2-3 min on the SQL 2005 (and even 2008 - tested it there also).

Have looked at the execution plans and the overall percent matches or are alike on each server.

flag
1  
Is there a problem with the underlying hardware on the "beefier" server? – SuperCoolMoss Oct 26 at 15:34
What SuperCoolMoss said, but check over SQL's configuration settings as well. This sounds more like a system configuration issue than something specific to that one database. – Philip Kelley Oct 26 at 18:36
I've tried this on 2 brand new IBM servers, so there should be no problem with the hardware. They both handles Commerce Server and SharePoint MOSS (2005 database) without any problems with speed. I've also checked the config's but - i'm not shure what to look for. The settings are much alike the 2005 databases. – ploft Oct 27 at 12:44

3 Answers

vote up 0 vote down

You need to go back to the 2000 server, run a full backup and then restore that to 2005.

link|flag
Oh yes, forgot to mention that I already have tried the backup (on SQL 2000) and restore (on SQL 2005/2008) - same result as mentioned before. – ploft Oct 26 at 15:01
1  
Not supported? Can you backup this claim?, is the first time I hear it actually. – Remus Rusanu Oct 26 at 18:25
How to: Upgrade a Database Using Detach and Attach (Transact-SQL): msdn.microsoft.com/en-us/library/… – Remus Rusanu Oct 26 at 18:35
I stand corrected, edit made. – keithwarren7 Oct 26 at 19:09
vote up 0 vote down

Without any information about the schema, the query or the size of the tables we really cannot guess anything. If you can post the output of the SET STATISTICS TIME ON and SET STATISTICS IO ON on 2005 vs. 2000 we could start a discussion...

The database upgrade from 2000 to 2005 occurs as soon as the database is placed online on the 2005 system, is the same no matter the actual operation (restore, attach).

link|flag
vote up 0 vote down

I'd also look into the options that are set on connections on the two servers. This can cause performance problems because these details affect query plan re-use. Run a Profiler trace on both servers and compare the existing connections details. A login with a different language from the rest, for example, can't use the same query plans. There's stuff in Books Online about which options affect this.

link|flag

Your Answer

Get an OpenID
or

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