SSIS Script Component as Destination

This article will show you how to use the SSIS Script Component as a Destination with a practical example. You can also look into the following links:

Before we start creating the SSIS Script Component as a Destination package, Let us see the table and the data that we are going to use.

SSIS Script Component as Destination 1

Configuring SSIS Script Component as Destination

STEP 1: Drag and drop the Data Flow Task from the toolbox to control flow region. Next, rename it as the SSIS Script Component as Destination.

SSIS Script Component as Destination 2

Double click on the data flow task to open the data flow tab.

STEP 2: Drag and drop OLE DB Source from the toolbox to the data flow region. Double click on the OLE DB source in the data flow region will open the OLE DB Connection Manager settings. For more Transformations >> Click Here.

SSIS Script Component as Destination 3

From the screenshot below, you can observe that We selected the [MyEmployees] table present in the Database as the source table

SSIS Script Component as Destination 4

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

SSIS Script Component as Destination 5

STEP 4: Drag and drop the Script Component from the SSIS toolbox to the data flow region. Once you drop the Script component, a new pop-up window called Select Script Content Type will open, as shown below. Here, we want to demonstrate the SSIS script component as Destination, so we select the Destination option.

SSIS Script Component as Destination 6

Next, drag and drop the OLE DB Source Output Arrow to this script component.

SSIS Script Component as Destination 7

Double click on the Script component will open the following editor to configure the properties. Please see Script Component as a Transformation to understand these properties.

SSIS Script Component as Destination 8

STEP 6: Within the Input Columns tab, you can cross-check the input columns.

SSIS Script Component as Destination 9

STEP 7: Within the Connection Manager tab, you can add the OLE DB, ADO, or Flat File connection manager. So that you can call the connection from the script file. For this example, we will directly provide the file path inside the C# script.

SSIS Script Component as Destination 10

STEP 8: Within the Script tab, please click on the Edit Script.. button to write the actual C# Script

SSIS Script Component as Destination 11

Once you click on the Edit Script, it will open the main.cs class file to write the C# code. Please write your custom code inside the Input0_ProcessInputRow(Input0Buffer Row) function.

SSIS Script Component as Destination 12

STEP 9: Add your custom code here. For this example, we read each row and column present in the source data to the text file.

SSIS Script Component as Destination 13

The code that we used in the above SSIS Script Component as Destination screenshot is:

C# CODE

// Creating two private Variables
private StreamWriter textWriter;
private string columnDelimiter = ",";

  /// This method is called once, before rows begin to be processed in the data flow.
  ///
  /// You can remove this method if you don't need to do anything here.
public override void PreExecute()
{
   base.PreExecute();
 
     /* Establish the Connection before the data flow begins.
        If you place this code inside the Input0_ProcessInputRow() then it will
        an error 
     */
   textWriter = new StreamWriter(@"D:\FILE EXAMPLES\Write.txt", false); 
}

  /// This method is called after all the rows have passed through this component.
  ///
  /// You can delete this method if you don't need to do anything here.
public override void PostExecute()
{
   base.PostExecute();
   
   // Closing the Connection. 
   textWriter.Close(); // It is always advisable to close the Connection 
}

  /// This method is called once for every row that passes through the component from Input0.
  ///
  /// Example of reading a value from a column in the the row:
  ///  string zipCode = Row.ZipCode
  ///
  /// Example of writing a value to a column in the row:
  ///  Row.ZipCode = zipCode
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
    textWriter.Write(Row.FirstName);
    textWriter.Write(columnDelimiter);

    textWriter.Write(Row.LastName);
    textWriter.Write(columnDelimiter);

    textWriter.Write(Row.Education);
    textWriter.Write(columnDelimiter);

    textWriter.Write(Row.Occupation);
    textWriter.Write(columnDelimiter);

    textWriter.Write(Row.YearlyIncome);
    textWriter.Write(columnDelimiter);

    textWriter.Write(Row.Sales);
 
    textWriter.WriteLine();
}

I suggest you read the comments as well. Once you have finished editing the Script, Please close the main.cs file, and click OK to finish creating our Package

STEP 10: Right-click on the SSIS Script Component as Destination Package in the Solution Explorer, and select Execute Package.

SSIS Script Component as Destination 14

From the above screenshot, you can observe that our SSIS Script Component as Destination Package has been executed successfully. Let’s open the text file and see whether the data are written or not.

SSIS Script Component as Destination 15

Comments are closed.