How can I convert SQL Server data file version ?
-
Assuming I have file data northwnd.mdf version 2005 I want to convert to file data version 2008 or reverse ?
-
Assuming I have file data northwnd.mdf version 2005 I want to convert to file data version 2008 or reverse ?
Use backup and restore going from 2005->2008. You cannot reverse the process using this method.
Never underestimate the power of human stupidity RAH
-
Assuming I have file data northwnd.mdf version 2005 I want to convert to file data version 2008 or reverse ?
As Mycroft said, you can upgrade, but not downgrade. Restore the older version database to a newer version instance, or detach from the old version and attach to the new version. Be aware that backup formats changed between SQL2008 and SQL2008 R2, which can cause incompatibilities
========================================================= I'm an optoholic - my glass is always half full of vodka. =========================================================
-
Assuming I have file data northwnd.mdf version 2005 I want to convert to file data version 2008 or reverse ?