• Home
        • Database Development

          Database development is designing, creating a database or data model, and analyzing requirements and their intents as raw data.

          Learn More
        • Architecture & Design

          Software architecture refers to the fundamental structures of a software system and the discipline of creating such structures and systems.

          Learn More
        • Programming

          Computer programming is the process of performing a particular computation or more generally, accomplishing a specific result.

          Learn More
        • Cloud Computing

          Cloud computing is the on-demand availability of computer system resources, especially data storage and computing power.

          Learn More
        • ETL Development

          ETL provides the foundation for data analytics and machine learning workstreams. Through a series of business rules, ETL cleanses and organizes data.

          Learn More
        • Data Visualization & Reports

          Data and information visualization is an interdisciplinary field that deals with the graphic representation of data and information.

          Learn More
  • Blog
  • Contact

SSIS 2012: Programmatically Create Catalog

Abstract
I have a client that has already started migrating existing SQL Server environments to SQL Server 2012. Thus, this article will demonstrate creating a catalog and catalog folder using a Script Task component.
Requirements

Article
We begin by launching Microsoft Visual Studio and creating a new Integration Services Project which is located under Business Intelligence Projects category.
After you have assigned a project name, proceed to click and drag the Script Task into the Control Flow pane from the toolbox.
Right-click the script task and click on “Edit”
Under the Script Task Editor change the “ScriptLanguage” to “Microsoft Visual C# 2010”.
In Project Explorer, ensure the following references are added:
System;
Microsoft.SqlServer.Management.IntegrationServices;
Microsoft.SqlServer.Management.Smo;
Back to the code window, ensure that the following namespaces are declared:
using System;
using Microsoft.SqlServer.Management.IntegrationServices;
using Microsoft.SqlServer.Management.Smo;
After the above declarations, proceed to create an instance of SMO Server to server “SQL12-PC”
Server SMO_DisHBI = new Server(“SQL12-PC”);
Create an instance of MOM – Managed Object Model class
Initialize MOM with SMO Server
IntegrationServices Is_DisHBI = new IntegrationServices(SMO_DisHBI);
//Create a catalog and assign a password.
//Ensure that the catalog name is “SSISDB” as per SQL Server 2012 RTM guidelines
Catalog sS_Vct = new Catalog(sS_Is, “SSISDB”, “password”);
sS_Vct.Create();

//Create a catalog folder and assign a description
CatalogFolder sS_Vctf = new CatalogFolder(sS_Vct, “selectSifiso”, “Description of selectSifiso folder created via Script Task.”);
sS_Vctf.Create();

Conclusion
It’s that simple!
Cheers.
Sifiso.
CodeProject

Loading

Sifiso

October 13, 2022
Sifiso is Data Architect and Technical Lead at SELECT SIFISO – a technology consulting firm focusing on cloud migrations, data ingestion, DevOps, reporting and analytics. Sifiso has over 15 years of across private and public business sectors, helping businesses implement Microsoft, AWS and open-source technology solutions. He is the member of the Johannesburg SQL User Group and also hold a Master’s Degree in MCom IT Management from the University of Johannesburg.

Meet Our Experts

We are proud to have a team of experts who are passionate about delivering the best possible solutions to you. Our team members are highly skilled and experienced in a diverse range of IT technologies, and are committed to staying up-to-date with the latest industry trends and best practices to deliver you the best results.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Join Our Newsletter

Subscribe to get our latest and best thinking on the most definitive workforce topics affecting HR leaders and organizations today.