Link to home
Start Free TrialLog in
Avatar of luyan
luyan

asked on

Upgrade from SQL Server 2005 to SQL Server 2008 R2

Our current SQL Server is SQL 2005 Enterprise Edition, we will move to SQL Server 2008 R2 Enterprise Edition. We have several hundred databases need to upgrade to SQL 2008 R2.

We could detach databases from SQL 2005 then attach them to SQL 2008 R2. Or backup databases from SQL 2005 and then restore on SQL 2008 R2. Is it in the right way? Do you have any good suggestions about this upgrade? How about reporting services upgrade and data transformation service packages upgrade?
Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Howard Cantrell
Howard Cantrell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi
I recommend the detach and attach proccess for databases migration. After the migration, databases remains compatibility level version and collation.
You should use this procedure: http://msdn.microsoft.com/en-us/library/ms189625.aspx

In order to migrate Reporting Services, this is the step-by-step process for success migration: http://technet.microsoft.com/en-us/library/ms143724.aspx
And for DTS: http://technet.microsoft.com/en-us/library/ms143501.aspx

Good luck
Javier
Avatar of luyan
luyan

ASKER

Thanks!