Managing the SSIS Catalog

The SSIS Catalog is surfaced within the SSISDB database. In this post I describe some tips for managing your SSIS Catalog database, named SSISDB. For information regarding restoring SSISDB, please see Deploying SSIS Projects to a Restored SSIS Catalog (SSISDB).

Create the SSIS Catalog

To create the SSIS Catalog, connect to an instance of SQL Server using SQL Server Management Studio (SSMS). Open the Object Explorer and right-click the “Integration Services Catalogs” node:

CreateCatalog_0

The Create Catalog dialog displays:

SSISCatalogPristine

The SSIS Catalog requires SQLCLR. Check the “Enable CLR Integration” checkbox to proceed:

CreateCatalogEnableSQLCLR

You can optionally select the “Enable automatic execution of the Integration Services stored procedure at SQL Server startup” option by checking its checkbox (I do):

CreateCatalogEnableJob

The SSIS Catalog requires a password. If you restore the SSISDB database (which wholly contains the SSIS Catalog), you will most likely need this password. So store it somewhere very safe.

CreateCatalogAddPassword

Click the OK button to create the SSIS Catalog.

Note: I’ve created a short (< 2:00) video that walks through this process. You can view it here.

Back It Up

As with all SQL Server database, please back up SSISDB. What follows is a (very) basic guide describing one simple method to backup your SSISDB database. Please, please, please learn more about SQL Server backup and restore options and their implications before backing up an SSISDB database in your enterprise. Feel free to use the steps I describe on your laptop or a virtual machine. And please remember…

Backups are useless. Restores are priceless. Conduct practice Disaster Recovery exercises in which you restore databases and then test functionality. You’ll be glad you did. Here is a link containing Microsoft’s advice on restoring the SSISDB database in SQL Server 2016.

In SQL Server Management Studio (SSMS), right-click the SSISDB database, hover over Tasks, and click Back Up:

SSISCatalog_BackItUp

When the “Back Up Database  – SSISDB” dialog displays, set appropriate backup options. (In this screenshot, I am setting no backup options. You can break stuff here. Unintentionally. Easily. In Production. Again, read more about backing up databases – especially about backing up SSISDB).

I’m going to walk you through a very simple example of an SSISDB backup on one of my demonstration virtual machines:

SSISDBBackup1

I remove the default Destination by clicking the Remove button.

I click the Destination Add button and select a location and filename for my SSISDB backup:

SSISDBBackupLocation

After clicking OK, my very simple (please read waaaaay more than this post before attempting this at work or home!!) back up is configured:

SSISDBBackupConfigured

When I click OK, my backup completes successfully:

SSISDBBackupComplete

Deleting the SSIS Catalog

If you want to delete the SSIS Catalog, drop the SSISDB database (Wait! Back it up first!):

SSISCatalog_DropTheBase

The Delete Object dialog displays. Click the OK button to attempt to drop the SSISDB database (and, thereby, the SSIS Catalog):

DropSSISDB

Starting Over with a Fresh SSIS Catalog Installation

Perhaps you’re trying to build a presentation or demonstration about creating an SSIS Catalog. Maybe you just want a fresh start. Whatever the reason, you may find it annoying that once you’ve created and deleted an SSIS Catalog you are stuck with some of the settings:

SSISCatalogStuckWithSettings1

Clearing the SQLCLR Option

Clearing the SQLCLR option (“Enable CLR Integration”) is accomplished by executing the following Transact-SQL (T-SQL) script:

sp_configure ‘clr enabled’, 0; 
GO 
RECONFIGURE;

These statements, when executed in SSMS, appear as shown here:

DisableSQLCLRExec

This solves some of the problem, but not all. The Create Catalog dialog still has that “Enable automatic execution of the Integration Services stored procedure at SQL Server startup” checkbox checked. Worse, now the checkbox is disabled!

CreateSSISCatalogReset_Almost

Fear not. This setting can be reset using a T-SQL script:

EXEC sp_procoption
@ProcName = ‘sp_ssis_startup’,
@OptionName = ‘startup’,
@OptionValue = 0;

When executed, the resulting messages appear as shown:

ResetCatalogJobSetting

After you reset those settings you may demonstrate creating an SSIS Catalog in a pristine instance, as shown here:

SSISCatalogPristine

If you want, you may also delete the “SQL Server Maintenance Job” which is created when the SSIS Catalog is created:

SSISDBJob

This post provides some basic guidance on how to manage the SSIS Catalog in an instance of SQL Server. Please read more at Backup, Restore, and Move the SSIS Catalog MSDN article.

You might want to contact Enterprise Data & Analytics  because we get the SSIS Catalog.

:{>

Related Training:
SSIS Academy: Using the SSIS Catalog – 3 days, you, me, and the SSIS Catalog…
IESSIS1: Immersion Event on Learning SQL Server Integration Services – April 2017, Chicago
IESSIS2: Immersion Event on Advanced Integration Services – May 2017, Chicago

Learn More:
Deploying SSIS Projects to a Restored SSIS Catalog (SSISDB)
A New Version of SSDT is Available
Announcing SSIS Catalog Compare v1.0
Stop an SSIS Package
Stairway to Integration Services
Stairway to Biml
SQL Server Central

Need help implementing an SSIS solution?
Contact Enterprise Data & Analytics today!