Is there a way to restore a SQL Server 2012 database backup to a SQL Server 2008?
I tried to attach file, it does not work.
|
Is there a way to restore a SQL Server 2012 database backup to a SQL Server 2008? I tried to attach file, it does not work. |
|||||||||||||
|
|
Checkout these references would be help you: http://msdn.microsoft.com/en-us/library/ms140052.aspx How can I backup & restore a single FILEGROUP in Sql Server 2008 Thanks |
|||
|
|
|
No, you cannot go backward, only forward. You can create an empty database on 2008 and then use the Generate Scripts wizard in Management Studio to script the schema and data (or 3rd party comparison tools from Red Gate and others). Make sure you set the right target version as 2008, and you'll have to flesh out incompatible things (e.g. OFFSET or FORMAT) that you might have used in 2012. |
|||
|
|
|
It won't work. The only way I think, but not sure, is to use the Import and Export utility. As far as data types of both are same, there shouldn't be any issues. |
|||
|
|