How to migrate a SQL Server database to a lower version

 

In this tip we will use the Generate Scripts Wizard in SQL Server Management Studio. 

Here are the basic steps we need to follow:

  1. Script the database schema and data from the higher version of SQL Server by using the Generate Scripts Wizard in SSMS.
  2. Connect to the lower version of SQL Server, and run the SQL scripts that were generated in the previous step, to create the database schema and data.

In the next section, I will demonstrate the steps for downgrading a SQL Server 2012 database to SQL Server 2008 R2 database.

Note: For demonstration purpose, I'll be downgrading the OUTLANDER database hosted on my SQL Server 2012 instance (IITCUK\DEV01) to SQL Server 2008 R2 instance (IITCUK\SQLSERVER2008).

Steps to Downgrade a SQL Server Database Using SSMS Generate Scripts Wizard

Step 1

Script the schema of the OUTLANDER database on the SQL Server 2012 instance (IITCUK\DEV01) using the Generate Scripts wizard in SSMS.

In Object Explorer connect to IITCUK\DEV01, right-click on the OUTLANDER database, expand Tasks and choose "Generate Scripts...".


In Object Explorer, right-click OUTLANDER database, expand Tasks and choose generate scripts

This launches Generate and Publish Scripts wizard. Click Next, to skip the Introduction screen and proceed to the Choose Objects page.

SQL Server Management Generate and Publish Scripts Wizard - Introduction Screen

On the Choose Objects page, choose option "Script entire database and all database objects", and then click Next to proceed to "Set Scripting Options" page.

Choose option Script entire database and all database objects in the SQL Server Management Studio Generate Scripts Wizard

On the Set Scripting Options page, specify the location where you want to save the script file, and then click the Advanced button.

Choose option Specifying scripting options in the SQL Server Management Studio Generate Scripts Wizard

In the Advanced Scripting Options dialog box,

  • set Script for Server Version to SQL Server 2008 R2 (or whatever version you want)
  • under the Table/View Options, set Script TriggersScript Indexes and Script Primary Keys to True
  • and set Types of data to script to Schema and Data - this last option is key because this is what generates the data per table.
Choose option Set scripting options including scripting the Schema and Data

Once done, click OK, to close the Advanced Scripting Options dialog box and return to Set Scripting Options page. In Set Scripting Options page, click Next to continue to Summary page.

After reviewing your selections on Summary page, click Next to generate scripts.


Generate and Publish Scripts - Summary Interface

Once scripts are generated successfully, choose the Finish button to close the Generate and Publish Scripts wizard.

Generate and Publish Scripts wizard iterating through each object

Step 2

Connect to the SQL Server 2008 R2 instance (IITCUK\SQLSERVER2008), and then run the SQL scripts that were generated in Step 1, to create the OUTLANDER database schema and data.

In Object Explorer connect to IITCUK\SQLServer2008, then in SQL Server Management Studio, open the SQL Server script you saved in Step 1.

SSMS


Opening SQL Script to install OUTLANDER database


Opening SQL Script to install OUTLANDER database

Modify the script, to specify the correct location for the OUTLANDER database data and log files. Once done, run the script to create the OUTLANDER database on IITCUK\SQLServer2008 instance.

Restoring OUTLANDER database

Upon successful execution, refresh the Database folder in Object Explorer. As you can see in the following image, the OUTLANDER database has been successfully downgraded.

Verifying OUTLANDER database downgrade

Notes

There are a few things to be aware of when using this approach.

  • This solution creates one large SQL file that has the scripts to create the database objects and also INSERT statements for the data in the tables.
  • For a large databases, the SQL file can get very large if you script out both the schema and the data and could be hard to load into an editor.  Also, you may get a memory related error message from the editor if the file is too big.
  • For large databases, around 1GB or more, if this approach does not work, then you should look at using SSIS to migrate the database or create custom scripts to script out the objects and BCP out the data for each of the tables.  You can use this Generate Scripts wizard to just generate the schema without the data and use SSIS or BCP to export and import the data.
  • This approach works for SQL Server 2017 to SQL Server 2005.  Some of the scripting options might be a bit different in newer versions, but the process is still the same.
  • Before just executing the script, you should review the script to make sure everything looks correct such as the path of the database files, database options, etc.
  • Also if you are using new functionality that does not exist in the lower version, SQL Server won't be able to create the objects and you will need to review the scripts that were generated and update the code accordingly.
  • For a very simple database this approach should work pretty easliy, but you might need to spend some time making some modifications to the script for a more complex database.
  • Below is a list of all of the scripting options. If you click on an item, the bottom part of the screen gives you a short definition of the option.
script options
Next Steps
  • To avoid this issue, always make sure that you perform a full backup of the database before you upgrade the SQL Server and database to a higher version of SQL Server.  In addition, be sure to thoroughly test the application prior to releasing the application to the users.
  • Consider this downgrade option as your last option to rollback from an upgrade because the time and storage needed can be very large.
  • With a very large database be sure you have sufficient storage to support the data needs.
  • Be sure to verify row and object counts as well as test your application before releasing to production.

0 Comments