Developing Specific Types of Script Components

Applies to: SQL Server SSIS Integration Runtime in Azure Data Factory

The Script component is a configurable tool that you can use in the data flow of a package to fill almost any requirement that is not met by the sources, transformations, and destinations that are included with Integration Services. This section contains Script component code samples that demonstrate the four options for configuring the Script component:

  • As a source.

  • As a transformation with synchronous outputs.

  • As a transformation with asynchronous outputs.

  • As a destination.

For additional examples of the Script component, see Additional Script Component Examples.

In This Section

Creating a Source with the Script Component
Explains and demonstrates how to create a data flow source by using the Script component.

Creating a Synchronous Transformation with the Script Component
Explains and demonstrates how to create a data flow transformation with synchronous outputs by using the Script component. This kind of transformation modifies rows of data in place as they pass through the component.

Creating an Asynchronous Transformation with the Script Component
Explains and demonstrates how to create a data flow transformation with asynchronous outputs by using the Script component. This kind of transformation has to read all rows of data before it can add more information, such as calculated aggregates, to the data that passes through the component.

Creating a Destination with the Script Component
Explains and demonstrates how to create a data flow destination by using the Script component.

See Also

Comparing Scripting Solutions and Custom Objects
Developing Specific Types of Data Flow Components