vote up 5 vote down star

Is it possible to restore a backup of a SQL Server 2008 database onto an instance of SQL Server 2005?

I need to work on an sample application for which database backup is in sql server 2008. But I'll not be able to install 2008. So is it possible to restore that back up in 2005?

flag

2 Answers

vote up 7 vote down check

No. It is not possible to restore a database from a backup of a newer version.

If you are dead set on it, I think your best option is to selet the database in the Object Explorer in SQL 2008, right-click, select Tasks->Generate Scripts.In the options dialog emable about everything, including Script Data.

And make sure you select "Script for SQL 2005".

Source

link|flag
a bit of a sweeping generalisation! – Mitch Wheat Feb 13 at 9:30
Perhaps, but it's true from my experience with SQL server (though that only spans 2000-2008) – Garry Shutler Feb 13 at 9:54
vote up 2 vote down

No, not directly. SQL Server 2008 database backups are not backward compatible with SQL Server 2005. However, with SQL Server 2008 Management Studio, you can script data and schemas in SQL Server 2005 mode. This article describes the process in detail.

link|flag

Your Answer

Get an OpenID
or

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