SSRS Deployment Automation with Octopus Deploy

12 February 2015
How we use Octopus Deploy to automate the release of our SQL Server Reporting Services solution

We use SQL Server Reporting Services to provide real-time reporting to our clients business units across Australia.

Anyone who has ever done any SSRS development knows that deploying these reports manually is a real pain in the backside - nothing is more painful than trying to upload a large number of files through the clunky SSRS web interface.

It’s even worse when you include though having to manually execute database scripts across multiple databases!

The first solution which people usually move to is automating the deployment through Powershell scripts which was also the first step we took, however having to manually run the scripts along with ensuring that the databases were updated with the latest versions of the stored procedures and functions was too tedious.

Complete deployment automation was the goal - we wanted a totally hands free process which we could reliably and repeatably run in all environments. As as we were already using the awesome Octopus Deploy to deploy the other applications in our solution it was the logical choice to drive this.

Packaging

Octopus Deploy requires a nuget package which contains the artefacts to be deployed which are defined by a nuspec file in the repository.

The deployment process relies on a specific structure to allow, for example, the SQL functions to be deployed before the SQL Stored Procedures which may depend on them

  • Reports - contains all SSRS artefacts to upload
  • SQL\Scripts - contains the stored procedures to be deployed to each business unit database
  • SQL\Dependencies - contains the functions or other SQL artefacts which must be deployed before the contents of the SQL\Scripts directory.

Using our existing TeamCity installation, I created a new build configuration to retrieve the SSRS project from GitHub and build the package according to the nuspec. and trigger a deployment to our Development Testing environment.

TeamCity Build Configuration

Deployment

The deployment process leverages two PowerShell scripts invoked from the default.ps1 Octopus script.

The first script, DeployReports.ps1 is responsible for deploying the reports and data sources into SSRS. The second script, DeploySQL.ps1 is responsible for pushing database scripts out to ensure that the database version matches the report version.

The Octopus deployment process uses a number of variables to drive the deployment:

  • SSRSReportServerUrl - contains the full url to the SSRS web service i.e. http://server/reportserver/reportservice2005.asmx
  • SSRSReportFolder - the root folder to deploy the reports into (we use the project name)
  • SSRSSharedDataSourcePath - the path to a Shared DataSource required by some of our reports. It is expected this is already setup and configured (this is the only manual step)
  • SSRSDynamicDataSourceCredentialsUsername - the username to connect to the business unit database with
  • SSRSDynamicDataSourceCredentialsPassword - the password for the business unit database user.
  • nEDRMappingConnectionStrings - a comma separate string of Oracle ezConnect strings used to connect to SQLPlus* with.

Deploying Reports

Report deployment is fairly straight forward - use the web service endpoint exposed by SSRS to setup the folder structures, upload all reports and finally configure each reports data sources.

As we share a single SSRS server across a few environemnts (DEV and UAT), our deployment process ensures that when we are deploying to the Development Testing environment, the reports in the UAT environment are not affected.

We do this by using the name of the Octopus Deploy Environment we are deploying into and creating the appropriate directory structure off that:

Once the reporting folders have been configured it’s time to upload each of our report definition files.

While you can run the reports now - SSRS will crash and complain about the datasources because

  1. Credentials in an embedded data source are not saved when uploading an RDL - also, we’re not using the same credentials in development and production environments are we?
  2. The link between a Report and a Shared Datasource must be re-established before the report can be run.

To fix this we need to retrieve the report from the server and specifically modify the data sources using variables provided by Octopus Deploy:

Deploying SQL Procedures and Functions

The script for deploying our SQL atefacts is responsible for 3 things:

  1. Deploy everything in the \SQL\Dependencies folder
  2. Deploy everything in the \SQL folder
  3. Insert a new record into a VersionInfo table (thanks FluentMigrator!) to record the current version of the reports.

As mentioned before, our deployment process deploys to multiple databases in series; this is done by adding a CSV string of SQL Plus commands as an environment specific variable in octopus deploy.

(Admittedly, this script is a little clunky and while it works for us, I haven’t tested it in any other configurations that how we are using it.)

###Conclusion

I really should rewrite those PowerShell scripts in ScriptCS hey!

Written on February 12, 2015