Derived Column Transformation in SSIS

Derived Column Transformation in SSIS plays a vital role in dealing with expressions in SQL Server Integration Services. The Expression Language has powerful built-in functions for string manipulation, data type conversions, mathematical functions, conditional expressions, and handling Null values.

Using SSIS derived column transformation, we can create the required expression using those built-in functions, Columns, Operators, and variables. The SSIS Derived Column Transformation also provides an option to choose whether you want to create new columns or replace existing ones with values calculated from expressions.

Derived Column Transformation in SSIS Example

Drag and drop the data flow task from the SSIS toolbox to control flow and rename it as Derived Column Transformation.

Add Data Flow task 1

Double click on it, and it will open the data flow tab. For more Transformations >> Click Here.

Drag and drop OLE DB Source, ADO.NET Destination, and Derived Column Transformation in SSIS toolbox to data flow region.

Derived Column Transformation in SSIS 2

Double click on the OLE DB source in the data flow region will open the connection manager settings and provide space to write our statement.

OLE DB Source Editor for Table and Db selection 3

The SQL Command we used in the above screenshot is:

USE [AdventureWorksDW2014]
GO
SELECT FirstName,
       LastName,
       YearlyIncome
FROM DimCustomer

Click on the columns tab to verify the fields. In this tab, we can uncheck the unwanted columns also.

Check Input Columns 4

TIP: If we don’t want any column, then there is no point in adding it to your SQL command.

Click ok and drag the blue arrow from OLE DB Source to Derived Column Transformation in SSIS. It allows the transformation to use the source data.

Expression

Double click or right-click on the derived column transformation to edit

Derived Column Transformation in SSIS 5
  1. Derived Column Name: Provide any unique name. Same as the Alias column in T-SQL.
  2. Derived Column: This derived column provides two options. Whether you want to add this as a new one or you wish to replace any existing column with this one
  3. Expression: In this place, we will write a custom expression by combining the built-in function, variables, and Columns.
  4. Precision: When we add any new field, Derived Column Transformation in SSIS automatically sets the precision for numeric data based on the data type. The value of this is read-only.
  5. Scale: When we add any new field, Derived Column Transformation automatically sets the scale for numeric data based on the data type. The value of this is read-only.
  6. Code Page: When adding a new column, it automatically sets the code page for the DT_STR data type.
  7. Configure error output: Specify how to handle errors.
Derived Column Transformation in SSIS 6
  1. Upper First Name: UPPER (FirstName) – It will convert the data present in the [FirstName] column to Upper Case.
  2. Full Name: FirstName + “ ” + LastName – It will combine the [FirstName] and [LastName] columns to display the Full Name.
  3. Tax: SQRT ([YearlyIncome]) – It will calculate the Square Root of the [YearlyIncome] column and assign it to the Tax Column.
  4. Variable Pay: 5000 – We are assigning the constant value 5000 to the new column Variable pay
  5. YearlyIncome: REPLACENULL ([YearlyIncome], 0) – We replace the Null values with Zeros using the REPLACENULL built-in function.

Click ok to finish configuring the Derived Column Transformation in SSIS. Next, drag and drop the blue arrow to the ADO.NET Destination.

Now, we have to provide the Server, database, and table details of the destination. So, double-click on the ADO.NET Destination and provide the required information.

Derived Column Transformation in SSIS 7

Click on the Mappings tab to check whether the source columns are exactly mapped to the destination columns.

Input and Output Columns Mapping 8

Click ok to finish the SSIS Derived Column Transformation package design. Let us run the package.

Derived Column Transformation in SSIS 9

Let us open the Management Studio and Check the results of the derived column transformation.

Destination Table 10