>> I just upgraded from SQL 2000 to SQL 2008
You need to rebuild all your indexes in your table so that Statistics would be updated for your 2008 database which would help your database to perform better.
Run this script in your database to rebuild all indexes:
sp_MSforeachtable 'ALTER INDEX ALL ON ? REBUILD'
Its recommended to rebuild indexes after Upgrades or a Backup is restored..
Main Topics
Browse All Topics





by: Big_WillPosted on 2009-10-31 at 06:44:02ID: 25709729
are yourunning the latest version of ASP?