Automatically link databases to Red Gate SQL Source Control

For the ones that have many databases to keep under source control, it can be really useful to speed up the link-to-source-control process. The only way we have now is to use the GUI provided by Red Gate SQL Source Control. Actually, there’s a github project called SOCAutoLinkDatabases by Matthew Flat, a Red Gate engineer, but, unfortunately it works only on a shared database model (centralised) in TFS. Let’s see how to manage the link using Working Folder (which is also good for many SCM) and dedicated database model (distributed).

The problem

We have ten databases for each developer and we are working on a dedicated database model sandbox. We have frequent changes, merges and we are dealing with a continuous integration environment. Thus, we need to redo the databases often. This means that we need to drop/unlink them often. Why? because we generate many custom/fake data and we often must delete them. In most of cases, it is quicker to drop the database instead of writing code. Say, we are developer in a development environment, we really want to get the latest version with no obstacles.

I’m used to follow these steps for each database manually:

  1. Create the new database with a script
  2. Link the database to the source control
    • Choose the model
    • Choose the type of SCM (Working Folder)
    • Map the folder
  3. Apply the comparison option
  4. Apply the filter
  5. Apply the latest version

The first two options (I’m a pretty quick one) took 1 minute (with no errors). Being optimistic, 10 databases, 10 minutes. Since we are on a release branch strategy, that value should be multiplied by the number of the branches, but it’s not mandatory to get them all, actually.

Let’s speak about 10 minutes, 7 developers. More than 1 hour.

I have thought that I could save time with automation. Unfortunately, the SQL Source Control API does not provide commands for getting from the source control and applying changes to the SSMS hosted database. Thus, I could automate just point 1 and 2.

Actually, with comparison SDK (which requires a license) it is possible to diff the SCM workspace folder with the database in order to bring it to SSMS, but it is not free, and it cannot be shared on the team, due to the license per developer.

The UnlinkDropRelinkDatabases.ps1 PowerShell script

With UnlinkDropRelinkDatabases.ps1 PowerShell script, we can link automatically databases to source control also in case of Working Folder management (which includes the most famous distributed SCM). It’s an extension of the script of Matthew (my thanks to him). In the attached package you can find:

root folder (VSTS workspace)
  – dev (branch folder)
    – foo.db1 folder (workspace db working folder)
    – foo.db2 folder (workspace db working folder)
    – foo.db3 folder (workspace db working folder)
  script.ps1
Moving these paths is possible, but the script must be changed on the top, in a dedicated area. The script will work only if SSMS is closed, if not, PoSh prompt will advice you to close the IDE.
prompt
Header – functions
The first part of the PoSh script is a set of useful function that are used later in the ps1.
Global settings section
In the global settings area there is the setup of your database folder, your database names and .sql scripts for creating the databases. If you would like to test the script on your paths, you should change the values of the variables with your naming conventions.
Screen Shot 2016-06-25 at 01.58.38
Working variable section
This section includes the folder in which SoC is installed and configured (I’ve tested only versions 4 and 5), the composition of the database name (by branch), a DROP DATABASE script and the list of the linked databases, taken from the configuration xml file.
Screen Shot 2016-06-25 at 02.03.09
The DROP DATABASE script is mandatory. Indeed, before proceeding to create and link a database, it will be dropped, if exists.
Connection section
In this section, the discovery of the instance will be made. However, the PoSh prompt will ask you the name of the named instance (optional).
Screen Shot 2016-06-25 at 02.07.46
Link database section
Before starting to link databases the base folder is created. The first lines of code implements a foreach loop (which loops on the soft coded collection of databases created on the top of the ps1) removes the nodes and folders previously mapped on the Red Gate local folder into the local app data Windows folder (functions RemoveAndSaveXmlConfiguration and RemoveWorkingBaseAndTransientFolders).
Screen Shot 2016-06-25 at 02.12.09
After this step, the database is dropped, if exists, and created (functions DropDatabaseIfExists and CreateDatabaseFromScript).
Screen Shot 2016-06-25 at 02.15.59
When the database is created, it is time to add the new configurations and to map the new folders into the xml. Finally, the source control workspace can be copied to the Red Gate SQL Source Control under-the-hood folders (functions CreateWorkingBaseAndTransientFolders, AddAndSaveXmlConfiguration and GeneratingWorkingBaseAndTransient).
Screen Shot 2016-06-25 at 02.19.10
This loop repeats for each database, however, when you execute the script, a menu pops up and you can choose between executing commands on a single database or managing every databases.
menu
Feel free to contribute here
github-bb449e0ffbacbcb7f9c703db85b1cf0b

2 thoughts on “Automatically link databases to Red Gate SQL Source Control

  1. I am trying to utilize this blog to make it work for our project. I am new to GIT and powershell. Looks like git init will initialize a master branch, but what if we need to initialize a feature branch? Also by doing git init, I am only seeing files config, description, and HEAD are created. But if I use Redgate to link the db, some extra files, such as COMMIT_EDITMSG, index and etc. are created. Can you give me some suggestion about the command that I should use to initialize git to generate the result as doing it via Redgate? Your help is greatly appreciated.

    1. You are speaking about the git engine, which is not really described in this post. This tool is working on a “Working folder” scenario provided by Redgate. If you would like to make it work on git, you’ve to change the SourceControl settings to “use your source control manager” and choose “git”. So you’ve to refactor the part of “linkeddatabases.xml”, too. I really suggest you to contribute to the repo for supporting git! I’ll appreciate it 🙂
      About feature branch and Redgate: https://www.red-gate.com/simple-talk/sql/database-administration/database-branching-and-merging-strategies/

Leave a comment