Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T05:15:31Zhttp://stackoverflow.com/feeds/question/204212http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-20085Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?Ian Nelson2008-10-15T10:01:30Z2009-09-12T19:03:52Z
<p>Is it possible to restore a backup of a SQL Server 2005 database onto an instance of SQL Server 2008?</p>
<p>I need to rebuild a server as it's getting rather crufty, so I plan to take this opportunity to upgrade to SQL 2008 and wondered if I'll be able to restore my backups OK.</p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-2008/204218#2042183Answer by Ilya Kochetov for Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?Ilya Kochetov2008-10-15T10:06:13Z2008-10-15T10:06:13Z<p>Upgrading from 2005 to 2008 is OK, moving back might require more work</p>
<p>N.B. You might have a problem with your database the logins (as they will not exist in the new server master db) but that's something which would happen regardless of the server version. Just re-create them and re-associate with your database.</p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-2008/204290#2042901Answer by Biri for Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?Biri2008-10-15T10:45:13Z2008-10-15T10:45:13Z<p>You can restore the 2005 backup with 2008 without any problems. The compatibility from this point of view is nice.</p>
<p>Backward is not possible only with backup files.</p>
<p>In any case you can also recreate the database structure and use SSIS to transfer data from one server to another.</p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-2008/215879#2158794Answer by Brent Ozar for Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?Brent Ozar2008-10-19T01:59:03Z2008-10-27T11:47:36Z<p>Yes, but make sure that ALL of your servers are SQL 2008. If you have development, test, QA or disaster recovery servers, all of them will need to be 2008, since 2005 servers won't be able to restore a 2008 backup.</p>
<p>To prevent the lost-login problem that Ilya mentioned, follow the steps in this knowledge base article. SP_Help_Revlogin will script out your logins, and you can apply that script on the new server. Presto, all your logins are back with the same SIDs and everything.</p>
<p><a href="http://support.microsoft.com/kb/246133" rel="nofollow">http://support.microsoft.com/kb/246133</a></p>
<p>(And just for future reference, this is how we upgraded StackOverflow last night, heh.)</p>
<p><a href="http://twitter.com/SuperDalgas/status/976719756" rel="nofollow">http://twitter.com/SuperDalgas/status/976719756</a></p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-2008/238006#2380060Answer by piers7 for Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?piers72008-10-26T13:23:32Z2008-10-26T13:23:32Z<p>You can also do a detach/attach with the database files (leastways you could going from 2000 to 2005), but there are more caveats with this approach (requires explicit rebuild indexes afterwards IRRC)</p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-2008/1415857#1415857-1Answer by connectingvivek for Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?connectingvivek2009-09-12T19:03:52Z2009-09-12T19:03:52Z<p>But what if the bkp used different windows principle user of different server? what do u suggest? plz explain in brief</p>