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?

link|improve this question

feedback

5 Answers

up vote 18 down vote accepted

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|improve this answer
Perhaps, but it's true from my experience with SQL server (though that only spans 2000-2008) – Garry Shutler Feb 13 '09 at 9:54
2  
I'd hate to be the Microsoft product manager that allowed it to be possible. – le dorfier Apr 15 '10 at 3:06
feedback

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|improve this answer
feedback

Yes it is possible

Using the export in the SQL Server 2008. Go to All Programs --> Microsoft SQL Server 2008 --> Import and Export Data

  • Then SQL Server Import AND Export Wizard window will be opened. Press Next

  • Choose a Data source (in your case from SQL Server 2008). Choose a Destination( in your case from SQL Server 2005).

  • Select Copy data from one or more tables or view

  • Select the source's tables and destination's tables

  • Click Next & Finish

to complete.

link|improve this answer
feedback

You can use DBSave, it's a great freeware tool to backup and restore ms sql server on different machines. It's verry simple to setup and to use.

link|improve this answer
feedback

No you can't, but tools like red gate's SQL Compare/Data Compare can read backup files directly & transfer the info across to a live database, dealing with any syntax or settings that aren't compatible on SS2005

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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