Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Moving a database from SQL2005 SP3 to RTM

Author  Topic 

edimen
Starting Member

12 Posts

Posted - 2010-07-22 : 13:41:36
Hello,

I need to move a database from a SQL 2005 SP3 CU7 server to a SQL 2005 RTM server - is this something that should work, are there any possible issues with that?

Thanks in advance!



tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-07-22 : 14:35:03
You can do that with backup/restore. The RTM version has hundreds of bugs and several security vulnerabilities, so I wouldn't recommend this at all for a production environment.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

edimen
Starting Member

12 Posts

Posted - 2010-07-22 : 14:44:28
Would detach/attach work as well? Or database copy wizard?

Also, if detaching, is that a good idea to have 'update statistics' on? That won't make the database incompatible in any way with the RTM server?

Thanks!!!
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-07-22 : 14:53:15
Do not use the database copy wizard. It is too buggy and does not give you an exact duplicate of your database.

Detach/attach should work. I use whatever the default is for the update stats part.

I prefer to use backup/restore as it means I can quickly and easily fallback to the source server.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

edimen
Starting Member

12 Posts

Posted - 2010-07-22 : 14:55:41
Tara - Thanks so much for the advice!
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-07-22 : 15:15:56
You're welcome, glad to help.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

dinakar
Master Smack Fu Yak Hacker

2507 Posts

Posted - 2010-07-22 : 16:59:08
I would rather prefer backup/restore than detach attach as detach/attach carries very high risk.. if your DB detaches and will not attach properly or has some errors then you are screwed... on the other hand if your backup wont restore properly you can take another backup.. or figure out something.. at least you will have access to your db on the CU server..

Dinakar Nethi
************************
Life is short. Enjoy it.
************************
http://weblogs.sqlteam.com/dinakar/
Go to Top of Page
   

- Advertisement -