How to restore SQL Server 2014 backup in SQL Server 2008

前端 未结 7 1189
感动是毒
感动是毒 2020-12-07 01:07

Were there any changes in this area with SQL Server 2014? I’ve seen this post Is it possible to restore Sql Server 2008 backup in sql server 2005 and I know that this was no

7条回答
  •  一整个雨季
    2020-12-07 01:37

    Not really as far as I know but here are couple things you can try.

    Third party tools: Create empty database on 2008 instance and use third party tools such as ApexSQL Diff and Data Diff to synchronize schema and tables.

    Just use these (or any other on the market such as Red Gate, Idera, Dev Art, there are many similar) in trial mode to get the job done.

    Generate scripts: Go to Tasks -> Generate Scripts, select option to script the data too and execute it on 2008 instance. Works just fine but note that script order is something you must be careful about. By default scripts are not ordered to take dependencies into account.

提交回复
热议问题