---
title: "Can you explain architecture of SSIS (SQL Server integration services)?"  
description: "Can you explain architecture of SSIS (SQL Server integration services)?"  
author: "Vijay Shukla"  
published: 2012-12-15  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/1607/can-you-explain-architecture-of-ssis-sql-server-integration-services  
category: "mssql server"  
tags: ["mssql server"]  
reading_time: 3 minutes  

---

# Can you explain architecture of SSIS (SQL Server integration services)?

The complete SSIS architecture comprises of 8 components.

**Data flow task: -** It defines source, mapping and transformation. It defines the core ETL process.

**Control flow task: -** This section helps to define logic and invoke task like data flow tasks, send email task, web service task etc.

**Package: -** It’s a collection of control flow tasks. It’s the unit of work which is retrieved, executed and saved.

**Client: –** SSIS system can be connected via various clients like SSIS designer which comes with BI IDE, custom applications, SSIS wizard etc. These clients use the object model to communicate with the SSIS system.

**Connection manager and data sources: -** They help us to define connection objects with data sources which can be reused in data flow task.

**DTSX files, MSDB and Integration service: -** The complete package can be stored in DTSX files or database. These packages can later be connected and invoked using integration service which runs at the background as windows services.

**Event handlers: -** When you run any SSIS package you would like to trap various events like OnError,OnPostExecute,OnPreExecuteetc to run certain logic like logging in to database , send emails etc.

## Answers

### Answer by James Zicrov

Hello Sir,I have a post which was suggested to me by one of my instructor which explains the use of SSIS operations such as **SSIS delete** and update.Will this be helpful?Thanks.

### Answer by Vijay Shukla

The complete SSIS architecture comprises of 8 components.

**Data flow task: -** It defines source, mapping and transformation. It defines the core ETL process.

**Control flow task: -** This section helps to define logic and invoke task like data flow tasks, send email task, web service task etc.

**Package: -** It’s a collection of control flow tasks. It’s the unit of work which is retrieved, executed and saved.

**Client: –** SSIS system can be connected via various clients like SSIS designer which comes with BI IDE, custom applications, SSIS wizard etc. These clients use the object model to communicate with the SSIS system.

**Connection manager and data sources: -** They help us to define connection objects with data sources which can be reused in data flow task.

**DTSX files, MSDB and Integration service: -** The complete package can be stored in DTSX files or database. These packages can later be connected and invoked using integration service which runs at the background as windows services.

**Event handlers: -** When you run any SSIS package you would like to trap various events like OnError,OnPostExecute,OnPreExecuteetc to run certain logic like logging in to database , send emails etc.


---

Original Source: https://www.mindstick.com/interview/1607/can-you-explain-architecture-of-ssis-sql-server-integration-services

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
