SSIS Tutorial For Beginners

This SSIS Tutorial blog will mainly focus on various aspects of SSIS. You will learn – what SSIS is, its components, features, functions, and several frequently asked questions.

The SSIS full form is SQL Server Integration Services. It is basically a component of Microsoft SQL Server database software that is used to perform data migration at scale. As a platform, SSIS enhances data integration and workflow applications.

What is SSIS?

SQL Server Integration Services is a platform for developing enterprise-level data integration and data transformation solutions. Use Integration Services to manage databases, copy files and download data, load data warehouses, cleanse and analyze data, and manage SQL Server objects.

Integrating Services extracts and transforms data from a wide range of sources, such as XML files, flat files, and relational data sources, and loads that data onto one or more destinations.

Many tasks and transformations are built into Integration Services for building packages, and you can manage them in the Integration Services Catalog Database.

Watch this SSIS Tutorial for beginners video:

Video Thumbnail

Implementing ETL using SSIS Components

We can use SSIS to implement ETL, or extract, transform, and load data into a Data Warehouse.

The ETL acronym stands for Extraction, Transformation, and Loading. This process involves extracting, transforming, and loading data into the final repository. ETL is the process of loading data into the warehouse from the source system.
In this diagram, we have described the ETL process step-by-step.

msbi1

    • Extraction (E):  Collection of data from different sources.
    • Transformation (T):  A different form of data obtained from different sources and converted according to business needs.
    • Loading  (L):  The Data warehouse contains the loaded data.

ETL is facilitated by SSIS components, which are listed below:

    1. Control Flow (for storing containers and tasks)
    2. Data Flow (Source, destination, and transformations)
    3. Event Handler (for managing messages and e-mails)
    4. Package Explorer (for offering an all-in-one view)
    5. Parameters (for fostering user interaction)

Features of SSIS

Now in this SSIS tutorial, let’s have a look at the key features of SSIS: 

    1. Data cleansing and profiling for better quality data
    2. Smooth data integration from disparate data sources
    3. Seamless integration with other components of Microsoft SQL products
    4. Enriched studio environment and graphical tools/wizards
    5. Workflow functionalities like file transfer protocol
    6. APIs for SSIS object modeling
    7. Efficient implementation of high-speed data connectivity/integration
    8. Packaged data source connectors
    9. Organized data mining query and lookup transformation
    10. Master and metadata management

Key Functions of SSIS

Now, let’s understand the key functionalities of SSIS.

1. Studio Environments

SQL Server Integration Services included two studios:

  • SSDT:  SQL  Server Data Tools
  • SSMS: SQL Server Management Studio

Let’s understand each of them.

1.1 SSDT:  SQL  Server Data Tools

It helps to develop the integration service packages, and we can perform the following jobs in SSDT:

    1. Copy basic package data from source to destination.
    2. Complete flow control and data flow are included when creating the packages.
    3. We can update the properties of packages during run time.
    4. Deployment will be created.
    5. Save package copies to SQL server msdb.

1.2 SSMS: SQL Server Management Studio

It helps to manage packages in a production environment and we can perform the following jobs in SSMS.

    1. Folder creation to organize the packages.
    2. With the help of the Execute Package utility, we can run the packages and store them on the local computer.
    3. Generate a command line when we run the execute package utility.
    4. Storing and fetching packages to and from the SQL Server MSDB.

Now, let’s see an example of using SSIS to transfer and transform data between two Excel files.

Step-by-Step Guide to Transferring and Transforming Data Between Excel Files Using SSIS

Example:  Let us consider two Excel sheets as follows:

msbi1

File 1

msbi1

File 2

Step 1: Create a New Project.
Click File –> New –> Project. Select Integration service from the group.

msbi1

It will open up the SSIS designer, which we will use for creating and maintaining Integration service packages.

msbi1

In the SSIS package folder, we can see the default package created with the name “Package.dtsx”.

Step 2: Create a connection manager to an Excel sheet.

msbi1

Select Excel and click on “Add.” Select the browser button and choose the Excel file path
msbi1

Step 3: Rename the connection manager.

Right-click on the connection manager and change the name to SourceExcelManager.

msbi1

Step 4: Repeat step 3 create another connection manager and point to the resultant file. Change the name to DestinationExcelManager.

msbi1

Step 5: Create control flow: transfer data from source Excel to destination Excel.

We should select the control flow in the SSIS designer. Drag data flow task from the toolbox to the designer.

msbi1

Rename the data flow task into “source Excel to destination Excel transfer task”.

msbi1

Flow control: It helps to define the workflow and also control the flow of execution.

Step 6: Create the data flow

It helps to define the flow of data between source and destination.

Step 7: Create an Excel Source

Choose an Excel source from the source group and place it in the designer.

msbi1

Step 8: Configure the Excel sheet

Double-click the Excel source.

msbi1

Select Data Source as “SourceExcelManager“, Data Access Mode as “Table or View” and Name of the sheet as “DataSheet1

Step 9: Create a derived column.

In this toolbox from the Transformation, the group drags the Derived column to the SSIS designer.

Step 10: Connect Source to Derived column

msbi1

Click on this arrow and connect it to derive a column.

msbi1

Step 11: Configure the derived column.

Double-click on the derived column.

msbi1

Write down Derived Column Name as Name, Select expression as Title + “ “ + FirstName + “ “ + LastName
Click Ok.

Step 12: Create an Excel Destination

Add Excel designation in the SSIS toolbox.

Step 13: Attach the Derived column to the Excel destination.

Following step 10, connect the derived column and Excel destination.

Step 14: Configure Excel Destination

Double-click on the Excel destination

msbi1

Locate connection Manager to “ExcelConnectionManager”, the Data Access Mode to “Table or View” and the Name of the Excel sheet to “Datasheet1”.

Click on mapping.

msbi1

Step 15: Execute the package. Press F5.

msbi1

We can find the output below:

msbi1

This is how we have successfully transferred and transformed data from File 1 to File 2 using SSIS.

2. Packages

An SSIS package is a collection of control flow and data flow, control flow includes the two things such as task and data flow task and Data flow includes source, transformation, and destination.

3. Expressions

SSIS Expression is a combination of literals, identifiers, and operators
Literals: An interpreted variable is known as a literal, different type of literals are

    1. Numeric literal: expression supports integral literal and nonintegral literal
    2. String literal: It has zero or more characters enclosed with the quotation and also it is always followed by the symbol.
    3. Boolean literal: It has only two options true or false.

4. Event Handling

Creating an event handler is similar to building packages and SSIS event handlers are:

OnError,OnExecStatusChanged,OnInformation,OnPostExecute,OnPostValidate,OnPreExecute,OnProgress,OnTaskFailed,OnVariableValueChanged,OnWarning.

Uses Of SSIS

  1. Combining data from heterogeneous data stores
  2. Populating data warehouses and data marts
  3. Cleaning and standardizing data
  4. Building BI into the data transformation process
  5. Automating administrative functions and data loading
Frequently Asked Questions
What is SSIS used for?

The following are some common uses of SSIS:

  • Data archiving (export)
  • Data loading (import)
  • Data transfer between two data sources
  • Cleansing or transforming dirty data
  • DBA tasks like filtering old files or indexing databases
How do I start SSIS?
  1. Click Start
  2. Point to All Programs
  3. Point to Microsoft SQL Server
  4. Click SQL Server Management Studio
  5. In the Connect to Server dialog box, select Integration Services in the Server type list.
  6. Provide a server name in the Server name box
  7. Click Connect
Is SSIS easy to learn?

SSIS is not difficult but takes patience and a lot of time to master. To gain full proficiency in SSIS, it is advised for learners to take up the SSIS Training and Certification course. This way learners will be able to learn SSIS comprehensively from experienced instructors and at the same time validate their skills with an SSIS certification.

You can also check out our SSIS video tutorial on YouTube to learn SSIS at an elementary level.

Is SSIS an ETL tool?

SSIS is a proprietary offering from Microsoft that helps perform ETL (Extract, Transform, and Load) operations. Apart from ETL, SSIS can be used to perform several other operations including data warehousing and data pumping.

What is the difference between SSIS and SSRS?

Although both SSIS (SQL Server Integration Services) and SSRS (SQL Server Reporting Services) are parts of the SQL Server, they serve different purposes altogether. While SSIS is used for ETL, data warehousing and data pumping, SSRS is used for Report building, Report Managing, and Report Designing.

Do you need SSIS installed to run a package?

You need to install SSIS on the server where you need to run the required package, as associated binaries are required. However, the adjacent SSIS service need not be co-installed.

Our Business Intelligence Courses Duration and Fees

Program Name
Start Date
Fees
Cohort starts on 11th Feb 2025
₹17,043
Cohort starts on 11th Feb 2025
₹17,043

About the Author

Data Analyst & Machine Learning Associate

As a Data Analyst and machine learning associate, Nishtha combines her analytical skills and machine learning knowledge to interpret complicated datasets. She is also a passionate storyteller who transforms crucial findings into gripping tales that further influence data-driven decision-making in the business frontier.