We upgraded sql server database from 2000 to 2008. Crystal report with a subreport was taking around 50 seconds on 2000 database now same report is taking 3 minutes. I don't have a clue what's the problem?

Thanks!!!

link|improve this question

44% accept rate
feedback

1 Answer

Update usage counters: In earlier versions of SQL Server, the values for the table and index row counts and page counts can become incorrect. To correct any invalid row or page counts, run DBCC UPDATEUSAGE on all databases following the upgrade from 2000 to 2008.

You should also rebuild your indexes (and ensure column statistics are updated).

link|improve this answer
Mitch Wheat - I have reubuild the indexes on the tables still no improvement. – user643062 Mar 15 '11 at 12:50
did you update the counts? – Mitch Wheat Mar 15 '11 at 13:06
Yes I ran DBCC UPDATEUSAGE on the upgraded database. Still same time, no improvements. – user643062 Mar 15 '11 at 13:12
are the servers comparable in speed? DISK IO sub-system particularly? – Mitch Wheat Mar 15 '11 at 13:18
suggest you capture the query plan and add to your question... – Mitch Wheat Mar 15 '11 at 13:23
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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