• Post category:StudyBullet-3
  • Reading time:6 mins read


Create ETL Package with SSIS to Extract, Transform, Load Data

What you will learn

 

Create ETL Package

 

Extract Data from data source

 

Transform Data using Lookup transformations

 

Add and Configure data source

 

Add and configure destination connections

 

Create Data Flows

 


Get Instant Notification of New Courses on our Telegram channel.


Execute Package

Description

Extract, transform, and load (ETL) is the process by which data is acquired from various sources. The data is collected in a standard location, cleaned, and processed. Ultimately, the data is loaded into a datastore from which it can be queried. Legacy ETL processes import data, clean it in place, and then store it in a relational data engine.

“SQL Server Integration Services is a platform for building enterprise-level data integration and data transformations solutions. Use Integration Services to solve complex business problems by copying or downloading files, loading data warehouses, cleansing and mining data, and managing SQL Server objects and data.”

SSIS is part of the Microsoft SQL Server data software, used for many data migration tasks. It is basically an ETL tool that is part of Microsoft’s Business Intelligence Suite and is used mainly to achieve data integration. This platform is designed to solve issues related to data integration and workflow applications.

SSIS is commonly known as an “ETL” product, a means to move and transform data from one point to another from various data sources (SQL Server or Oracle databases, Excel, CSV or Text files and more). But SSIS is so much more. In its bare essence, SSIS is a workflow orchestrator: it executes different tasks, either sequentially or in parallel, and different execution paths can be executed, depending on success, failure or other factors including precedence constraints. This means SSIS can be used in other scenarios than just data warehousing with the corresponding SSAS and SSRS Microsoft Data Platform products. Database administrators can use it for example to schedule and execute backups of their databases.

SSIS is mainly a visual tool. Packages are developed in Visual Studio and they use a visual canvas to arrange tasks on the Control Flow tab. This means the solution is more easily understood by someone new to the project.

English
language

Content

SQL Server Setup
Introduction
What is SQL Server
Download SQL server
Install SQL Server
Install SSMS
Connect SSMS To SQL Server
Please Note
Install Database
Visual Studio Setup
What is Visual Studio
Install Visual Studio
Install SQL Server Data Tools – SSDT
Install SSDT Designer Templates
Create a project and with SSIS
What is SSIS
What is ETL
Create a new Integration Services project
SSIS Designer
Add and configure a Flat File connection manager
Remapping Column Data Types
Add and configure an OLE DB connection manager
Add a Data Flow task to the package
Add and configure the flat file source
Add and configure the lookup transformations
Add and configure Lookup for DateKey Transformation
Add and configure the OLE DB destination
Test the Lesson 1 package