Our software must be able to run on SQL Server 2000 and 2005. To simplify development, we're running our SQL Server 2005 databases in compatibility level 80. However, database performance seems slower on SQL 2005 than on SQL 2000 in some cases (we have not confirmed this using benchmarks yet). Would upgrading the compatibility level to 90 improve performance on the SQL 2005 servers?
|
feedback
|
|
I think i read somewhere, that the SQL Server 2005 database engine should be about 30% faster than the SQL Server 2000 engine. It might be, that you have to run your database in compatibility mode 90 to get these benefits. But i stumbled on two scenarios, where performance can drop dramatically when using mssql 2005 compared to mssql 2000:
| |||
|
feedback
|
|
after you moved the DBs over to 2005 did you update the stats with full scan? rebuilt the indexes? first try that and then check performance again | |||
|
feedback
|
|
Also a FYI, if you run compatibility level 90 then some things are not supported anymore like old style outer joins | |||
|
feedback
|
|
Are you using subselects in your queries? From my experience, a SELECT statement with subselects that runs fine on SQL Server 2000 can crawl on SQL Server 2005 (it can be like 10x slower!). Make an experiment - re-write one query to eliminate the subselects and see how its performance changes. | ||||
|
feedback
|