Various Types of Transformations In SSIS-2012

Introduction

 
In this article, I will list and define the various types of Transformations in SSIS-2012 Version.
 

Various Types of Transformations in SSIS 2012

 
In SSIS-2012 there are nearly 30 types of transformations.
 
Depending on the functionality transformations are divided into the following five groups:
  1. Business Intelligence Transformations
  2. Split And Join Transformations
  3. Row Transformations
  4. Row-Set Transformations
  5. Other Transformations.
  6. Business Intelligence Transformations
This transformation is classified into the following six types:
  1. Fuzzy Group Transformation: The Fuzzy Group Transformation is used to do data cleansing by finding rows that are likely duplicates and reduce the number of duplicates within a dataset based on the Matching Decision. This Transformation will accept only string data types while reducing the amount of duplicate data.
  2. Fuzzy Lookup Transformation: The Fuzzy Lookup Transformation is used to return close matches of reference data for the incoming data stream. It can be matched and standardizes the data based on fuzzy logic.
  3. Term Extraction Transformation: Extracts terms (nouns and noun phrases) from the input text into the transformation output column.
  4. Term Lookup Transformation: Extracts terms from the input column with TEXT data type and match them with the same or similar terms found in the lookup table. Each term found in the lookup table is scanned for in the input column. If the term is found then the transformation returns the value as well as the number of times it occurs in the row. You can configure this transformation to do a case-sensitive search.
  5. Data Mining Query Transformation: Queries a data mining model. Includes a query builder to assist you with the development of Data Mining eXpressions (DMX) prediction queries.
  6. Data Cleansing Transformation: This transformation is used to do automating data cleansing and monitoring the overall status of the data cleansing process.

Split and Join Transformations

 
This transformation is classified into the following seven types:
  1. Cache Transformation: This transformation is used to store the data as a file or in memory for use in a lookup transformation
  2. Conditional Split: This transformation is used to accepts input and determine which destination to pipe the data into based on the result of an expression. It redirects rows of data that meet specific conditions to different outputs
  3. Look-Up Transformation: This Look Up Transformation is used to join the input data set to the reference table, view or row set created by a SQL statement to lookup corresponding values. If some rows in the input data do not have corresponding rows in the lookup table then you must redirect such rows to a different output.
  4. Merge Transformation: This transformation is used to merge two sorted inputs into a single output based on the values of the key columns in each data set. Merged columns must have either identical or compatible data types
  5. Merge-Join Transformation: This transformation is used to merge two datasets into a single dataset using a JOIN function.
  6. Multicast Transformation: This transformation is used to send a copy of the data to an additional path in the workflow. It duplicates the data in the dataflow that again we can send the data in parallel, or when we want to send the data to multiple destinations simultaneously.
  7. Union-All Transformation: Combines multiple inputs into a single output. Rows are sorted in the order they're added to the transformation. You can ignore some columns from each output, but each output column must be mapped to at least one input column.

Row Transformations

 
This transformation is classified into the following six types.
  1. Character Map Transformation: The Character Map transformation allows you to do character operations on string columns. It makes common string data changes for you.
  2. Copy Column Transformation: This transformation is used to add a copy of column to the transformation output. You can later transform the copy. Makes a copy of a single or multiple columns that will be further transformed by subsequent tasks in the package
  3. Data Conversion Transformation: This transformation is used to convert a column data type to a new (another) column data type.
  4. Derived Column Transformation: This transformation is used to apply expression to a data column and create a new derived column calculated from an expression.
  5. OLEDB Command Transformation: Runs a SQL command for each input data row. Normally your SQL statement will include a parameter (denoted by the question mark)
  6. Script Component Transformation: This transformation is used to do a custom transformation.It uses a script to transform the data and you can apply specialized business logic to your data flow.

Row Set Transformations

 
This transformation is classified into the following six types:
  1. Aggregate Transformation: This transformation is used to aggregates the data from transformation or source and it aggregates the values by group.
  2. Row Sampling Transformation: This transformation is used to capture a sampling of the data from the data flow by using a row count of the data flow's total rows. It Loads only a subset of your data, defined as the number of rows and it randomly selects the data and is delivered to somewhere.
  3. Percentage Sampling Transformation: Loads only a subset of your data, defined as the percentage of all rows in the data source. It randomly selects percentage of rows.
  4. Sort Transformation: This transformation is used to sort the data in the data flow by a given column and discard with duplicate values (optionally eliminating duplicates).
  5. Pivot Transformation: This transformation is used to pivot the data on a column into a more non-relational form. It converts rows into columns.
  6. UnPivot Transformation: This transformation is used to unpivot the data from a non-normalized format to a relational format.

Other SSIS Transformations

 
This transformation is classified into the following five types:
  1. Audit Transformation: This transformation is used to expose auditing information from the package to the data pipe, such as package execution and Execution Time.
  2. Row Count Transformation: This transformation is used to count the rows in the data flow and stores them as a variable.
  3. SCD Transformation: This transformation maintains the historical values of the dimension members when new members are introduced. It automatically generates transformations for TYPE1 and TYPE2 SCD's.
  4. Export Transformation: This transformation is used to export the column from the data flow to the system.
Import Transformation: This transformation is used to read data from files and appends it to the data flow.
 
Finally we can see the List of SSIS-2012 Transformations alphabetically as below:
  1. SSIS Aggregate Transformation
  2. SSIS Audit Transformation
  3. SSIS Cache Transform Transformation
  4. SSIS Character Map Transformation
  5. SSIS Conditional Split Transformation
  6. SSIS Copy Column Transformation
  7. SSIS Data Conversion Transformation
  8. SSIS Data Mining Query Transformation
  9. SSIS Derived Column Transformation
  10. SSIS DQS Cleansing Transformation
  11. SSIS Export Column Transformation
  12. SSIS Fuzzy Grouping Transformation
  13. SSIS Fuzzy LookUp Transformation
  14. SSIS Import Column Transformation
  15. SSIS Look Up Transformation
  16. SSIS Merge Transformation
  17. SSIS Merge Join Transformation
  18. SSIS Multicast Transformation
  19. SSIS OLEDB Command Transformation
  20. SSIS Percentage Sampling Transformation
  21. SSIS PIVOT Transformation
  22. SSIS Row Count Transformation
  23. SSIS Row Sampling Transformation
  24. SSIS Script Component Transformation
  25. SSIS Slowly Changing Dimension Transformation
  26. SSIS Sort Transformation
  27. SSIS Term Extraction Transformation
  28. SSIS Term Look Up Transformation
  29. SSIS Union All Transformation
  30. SSIS UnPivot Transformation

Summary

 
In this article, I try to explain the various types of SSIS-2012 Transformations. I hope after reading this article your SSIS-2012 Transformation concepts will be strong. I would like to have feedback from my readers. Please post your feedback, question, or comments about this article.


Similar Articles