Continuous Integration with SQL Toolbelt

Sometimes, you wish you had a tool to run a software development process exactly the way you need it to run. You click your heels together and then realise that you already have the means to do it. By combining tools that can work in command-line mode, or can be automated in other ways, you can sometimes save a great deal of time and tedium. Roger Hart rummages into the SQL Toolbelt and comes up with some practical examples for providing Continuous Integration, along with the code!

Introduction

Source Control and Continuous Integration sound good, and for a lot of us it’s old news. As, I suspect, is the weary sigh of resignation and the dark mutterings about databases not having actual, compliable source code. Migration and deployment don’t get to be as simple as pressing a big “Build Now” button, but rather involve the painstaking construction of dedicated scripts.

It’s no fun, takes far too long, and has so many potential points of failure that it’s dizzying. You might check-in application code a few times a day, but change-scripts or creation-scripts, or whatever other way you want to approach the whole vexed issue, just don’t fit in so neatly.

Until the point that we can provide a consensus on the best way of building database applications, there is another approach. You can quickly combine existing tools to ease the pain of maintaining the source of databases. For instance, you can use SQL Compare and SQL Data Compare to create folders of scripts representing the database, put them in source control, keep them up to date, and deploy from them when you’re done. With the command line, or PowerShell, or even the SDK, you can have the scripts folders updated automatically. And since both applications can handle scripts folders as though they were live databases, you can then create a migration script from the final version. The schema-only version of this has been possible for a while, but the addition of data scripts in SQL Data Compare 8 makes it possible to include (and deploy) static data.

What is continuous integration?

Continuous integration is the process of ensuring that all code and related resources in a development project are integrated regularly and tested by an automated build system. Code changes are checked into source control, any conflicts are resolved, and significant changes trigger an automated build with unit tests and rapid feedback. A stable current build is consistently available, and if a build fails, it is fixed rapidly and re-tested.

A continuous integration server uses a build script to execute a series of commands that build an application. Generally, these commands clean directories, run a compiler on source code, and execute unit tests. However, build scripts can be extended to perform additional tasks, such as deploying the application or updating a database with SQL Compare.

Continuous integration is now an established development practice. Its benefits were outlined by Martin Fowler in the article Continuous Integration

…there is a stable piece of software that works properly and contains few bugs. Everybody develops off that shared stable base and never gets so far away from that base that it takes very long to integrate back with it. Less time is spent trying to find bugs because they show up quickly.

[….]

The basic rule of thumb is that you should be able to walk up to the project with a virgin machine, do a checkout, and be able to fully build the system. Only a minimal amount of things should be on the virgin machine – usually things that are large, complicated to install, and stable.

For many software projects, this will include a database. Fowler recommends that “getting the database schema out of the repository and firing it up in the execution environment” should be part of the automatic build process. However, this is not always simple.

How are databases different?

The principal difficulty of continuous integration for databases is the lack of a simple way to keep a database in source control and deploy it to a target server.

Because DML and DDL queries modify the current state of a database, there is no source code to compile. Migration and deployment therefore rely on creating scripts specifically for that purpose.

The lack of source code makes it difficult to maintain a current stable version in source control. Creation and migration scripts can be checked into the source control repository, but the actual creation of these scripts is not considered to be part of the database development cycle.

Migration scripts may contain ALTER and UPDATE statements to synchronize the target version of the database with the development version; alternatively, the scripts may create a new database. Where changes are deployed to an existing database, all differences and dependencies must be accounted for. In some production deployments, this involves multiple targets with different schemas and data. In either case, the manual process is time consuming and prone to errors.

Object creation scripts can be generated relatively simply (for example using Microsoft SQL Server Management Studio), but referential integrity is difficult to maintain. Objects must be created (and populated with data) in the correct order, otherwise they may be invalid. As dependency chains can be complex, third party tools are often required. Data migration or test data creation, similarly, are tedious and time consuming operations when performed manually.

How can Red Gate tools help?

Red Gate offers the following tools for automating database development:

  • SQL Compare Compares and synchronizes database schema.
  • SQL Data Compare Compares and synchronizes database data.
  • SQL Data Generator Generates realistic test data based on your database schema.

The professional editions of SQL Compare and SQL Data Compare enable you to create, compare, and synchronize folders of SQL scripts representing a database’s schema and data. The process is rapid, accurate, and – crucially – can be automated using the command line interface.

A representation of the database can therefore be created and automatically maintained in a source control repository without manual intervention.

Using the command line interface of Red Gate’s SQL comparison tools, it is easy to reduce scripting operations to a single click or a scheduled task.

There are three stages to keeping your database in source control with Red Gate tools:

  1. Setting up source control
    Create a scripts folder and check it into the repository.
  2. Synchronizing development changes
    Periodically, changes to the development database are compared and synchronized with the scripts in source control, maintaining a stable current version of the database. Development continues, and the scripts are updated automatically, without manual intervention.
  3. Deploying to the test environment
    When a build is triggered, the scripts in source control are deployed to the target database using SQL Compare and SQL Data Compare.

Example: setting up source control

760-Roger.1.gif

The diagram gives an overview of the whole process.

In this example, changes are made to the schema and data of the database WidgetDev. These changes are synchronized with the database in source control, and eventually deployed to the testing database WidgetTest.

WidgetDev is maintained in source control as the scripts folder WidgetDevScripts.

This example shows the synchronization of all schema changes, and only changes to the static data required for testing. The transactional data in the table WidgetPurchases will not be included.

Note that:

  • Scripts folders and the command line interface are only available with the SQL Compare and SQL Data Compare Professional Editions.

  • Data synchronization may fail if the schemas are not identical.

Schema synchronization must therefore be performed first.

This article specifically refers to the command line syntax used in version 8 of both SQL Compare and SQL Data Compare.

To keep the database in source control, you first need to create a scripts folder. You do this using either the command line or graphical user interfaces of SQL Compare and SQL Data Compare.

This example uses the command line.

To create the schema scripts: at the command prompt, navigate to the SQL Compare directory, then type:

The folder is created and populated with object creation scripts representing the schema of WidgetDev. To update the folder with data scripts, navigate to the SQL Data Compare directory, then type:

The scripts folder can now be committed to source control, providing a baseline version of the database that you can develop.

Example: synchronizing development changes

You can update the source control version of the database with development changes either manually or automatically. To update manually, you would use the graphical user interface of SQL Compare and SQL Data Compare to compare and synchronize your working copy of the scripts with the development database.

Alternatively you can create a .bat file to automatically check for changes to the development database and synchronize them with the source control version.

You can run this batch file when significant changes are made to the database, or schedule regular synchronizations using the Windows Scheduled Task Wizard.

I’m assuming here that you want the entire schema, and most of the data from the database WidgetDev. To do this, save the following script:

Where:

  • /dbl: WidgetDev specifies WidgetDev as the source
  • /scr2:"C:\Scripts\WidgetDevScripts" specifies WidgetDevScripts as the target
  • /o;Default specifies that the default options will be used for comparison and synchronization
  • /sync synchronizes the data sources, making WidgetDevScripts the same as WidgetDev
  • /exclude:table:WidgetPurchases excludes WidgetPurchases. All other tables will be >deployed.

Checking in the changes

The .bat file synchronizes your working copy of the scripts folder. It is still necessary to check those changes into your source control repository.

If your source control system allows you to check in modifications from the command line interface, you can add check in instructions to the end of the script, automating the entire process.

When you compare data sources using SQL Compare and SQL Data Compare, the command line output lists their differences. You can direct this output to a text file using /v > C:\FileName.txt

The file could then be used as part of the check in comments, providing a detailed log of changes.

For example, if you are using the Subversion source control system, you could add the following to the end of the script:

The synchronization changes are committed to source control, and a list of the synchronized differences is added as a commit message.

Example: deploying to the test environment

When development changes are sufficient to trigger a build, the database is deployed. As data synchronization may fail if the schemas are not identical, the schema changes are deployed first.

This example deploys the schema and static data of WidgetDev to the testing server WidgetTest, and creates reports as part of the build process.

To automate the deployment, save the following command lines as a .bat file, and run it as part of the build process:

Where:

  • /scrl:"C:\Scripts\WidgetDevScrlpts" specifies WidgetDevScripts as the source
  • /db2:WidgetTest specifies WidgetTest as the target
  • /o:Default specifies that the default options will be used for comparison and synchronization
  • /sync synchronizes the data sources, making WidgetTest the same as WidgetDevScripts
  • /v > "C:\SchemaDeploy.txt" directs detailed command line output describing the schema synchronization to a file
  • /v > "C:\DataDeploy.txt" directs detailed command line output describing the data synchronization to a file
  • /Report generates a report of the schema differences and writes it to the specified file
  • /ReportType specifies the format of the report, in this case a detailed interactive HTML format
  • /ScriptFile saves a copy of the SQL script used to migrate the changes
  • /Exclude:table:WidgetPurchases excludes WidgetPurchases. All other tables will be deployed

Creating test data

These examples have discussed the deployment of existing test data. It is also possible to create realistic test data using Red Gate’s SQL Data Generator

You can set up a SQL Data Generator project specifying details of the target database, what kind of data to generate, and so on.

To generate data at build time, you can run that SQL Data Generator project from the command line:

Here, TestData.sqlgen is a SQL Data Generator project file, and the /Out switch writes a summary of the data generated to the file DataGenerationReport.txt

Taking it further

Those examples cover the basics. There are plenty of other options you might set to reflect the needs of your own environment. You can also set up a project in the GUI, save it, and call it from the command line. Which doesn’t sound like much, but lets you take advantage of the object filtering capability in SQL Compare, and WHERE clause filtering in SQL Data Compare. 

You might have noticed that the command lines for both tools look pretty similar now. We’ve tried to make them consistent, more intuitive, and significantly less quirky.  

You can find out more about using the SQL Compare and SQL Data Compare command lines here: 

Automation with MSBuild, NAnt, and PowerShell

The previous examples use MS-DOS batch scripting to run SQL Compare and SQL Data Compare. Although this has the benefit of being supported by all versions of Windows, it does not integrate elegantly with contemporary build systems. Checking the script files into and out of source control using the command line requires additional scripting, and lacks flexibility.

The following examples cover some more customizable and powerful technologies.

You can download the code examples used here as a .zip file )

1. Using MSBuild

MSBuild was released with Visual Studio 2005, and is now one of the most popular build scripting systems. Using it, you can quickly get started building your application. Although MSBuild is commonly used with Team Foundation Server, it can be used by any continuous integration server, or directly from the command line interface.

For more information, see the MSBuild documentation

The simplest way to integrate SQL Compare with MSBuild is to use the built in Exec task to execute command lines similar to those described earlier in this article. Although the results are identical, you can take advantage of the MSBuild infrastructure, and information such as whether the build was successful, and where files have been checked out to.

The following MSBuild target executes SQL Compare, using a scripts folder as the source:

The target for synchronization is then set using properties at the top of your build file. The properties specify that the target server is called SQLStaged, the target database is Northwind, and the SQL Compare script folder is checked out to the directory C:\VSSGet

These options can also be specified as arguments when you execute the MSBuild script, allowing for more flexibility.

For example:

This command executes the build script, which in turn executes SQL Compare with the appropriate settings. This can be integrated into a larger build file that also handles build and deployment.

Given the power of MSBuild, many people have created additional tasks as part of the MSBuild Community Tasks project.

For example, to check out from Visual SourceSafe you could include the following snippet:

However, most continuous integration servers will do this for you as part of their build process, before executing your build script.

Combining these methods, you can check out the latest version of your scripts and execute SQL Compare to update your database with a single command. The same approach can be taken with SQL Data Compare. This is demonstrated below, using NAnt.

The complete script used in this example can be found in the downloadable .zip file as the file: DeplyToTestmsbuild

2. Using NAnt

NAnt is a popular alternative to MSBuild, with similar syntax. For more information, see the NAnt home page

Here, instead of synchronizing from a scripts folder, the example synchronizes from another database. This is useful if many developers are working on a shared central database, and you want to deploy its static data.

The following NAnt script could be used:

Here, there are four different properties which are set to define the synchronization:

The script can then be executed via NAnt with following command:

The complete script used in this example can be found in the downloadable .zip file  as the file: nant.build

3. Using PowerShell

Automated build systems solve many continuous integration problems; however there are other times when automation is useful. PowerShell – a technology Microsoft are investing in heavily – is an advanced command line and task scripting tool. It allows you to write custom scripts that solve every day problems, such as synchronizing your database.

For more information, see the PowerShell getting started guide

For example, the following two snippets of code are PowerShell methods which synchronize databases:

1) Synchronize the schema

2) Synchronize the data

The advantage of having these commands as methods is that you can store them in a PowerShell script file. That file can be included in any subsequent PowerShell script, or at the interactive console in order to perform the synchronization:

The complete script used in this example can be found in the downloadable .zip file as the file: SQLCompare.ps1

Conclusion

This article has outlined some examples of how to include databases in a continuous integration development cycle. Databases can be maintained in source control using the scripts folder functionality of SQL Compare and SQL Data Compare, and then deployed to a live database as part of the integration process. The Red Gate tools handle the scripting and synchronization process, removing the bottleneck that has traditionally obstructed continuous integration and source control for databases. This process can be fully automated using the command line interface, either on its own, or in conjunction with technologies such as MSBuild, NAnt, and PowerShell.

Many of the tools described in this article are freely available. MSBuild is distributed as part of Microsoft Visual Studio 2005, NAnt is available as a free download, as is the Subversion source control system.

All Red Gate tools are available as a fully-featured 14 day free trial.

Many thanks to Ben Hall for his help with this article, particularly with the NAnt and PowerShell sections