What is the most efficient way to migrate an SQL Server Express database from one server to another? I have several databases that need to be moved, and I want to do as little work as possible and avoid breaking anything.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Backup and restore.

You backup your database some location and you then restore from that location but you target a new database on your target server (overwrite any changes).

It's fast and straight forward. You can however, not use this to move databases cross different versions of SQL Server (it should be fine to use this to migrate from express to standard but the other way around might be problematic as the standard edition isn't subject to the same limitations as the express edition).

link|improve this answer
Will this be problematic moving from 2005 to 2008? – smartcaveman Jun 9 '11 at 11:57
Can't say, it might be possible, the database is going from older to newer, you'll just have to try it. I believe it would because otherwise there wouldn't be anyway for you to upgrade a database other than to reattach existing MDF/LOG files. I don't have the necessary stuff available to test it. – John Leidegren Jun 9 '11 at 12:46
feedback

Your Answer

 
or
required, but never shown

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