Overview of the SSIS Catalog (SSISDB)
liveThe SSISDB catalog is the central management point for SQL Server Integration Services (SSIS) projects deployed to a SQL Server. It serves as a repository for projects, packages, parameters, environments, and operational history.
Key Management Interfaces
- SQL Server Management Studio (SSMS): Access the catalog by connecting to the Database Engine and expanding the Integration Services Catalogs node in Object Explorer. You can also access the underlying SSISDB database via the Databases node.
- Stored Procedures: Manage objects by calling stored procedures directly within the SSISDB database.
- SQL Views: Inspect objects, settings, and operational data by querying views in the SSISDB database.
- Windows PowerShell: The catalog and database support Windows PowerShell for automation tasks like project deployment.
Important Constraints
- Database Renaming: You cannot rename the
SSISDBdatabase. - Linux Support: While SSIS packages can run on Linux, the SSIS Catalog itself is not supported on Linux.
- Failover Behavior: In a cluster failover, running packages do not automatically restart. Use checkpoints to implement restart logic.