Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 3.14 KB

File metadata and controls

47 lines (32 loc) · 3.14 KB
title Developing Specific Types of Script Components
description Developing Specific Types of Script Components
author chugugrace
ms.author chugu
ms.date 03/17/2017
ms.service sql
ms.subservice integration-services
ms.topic reference
helpviewer_keywords
Script component [Integration Services], examples

Developing Specific Types of Script Components

[!INCLUDEsqlserver-ssis]

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 [!INCLUDEssISnoversion]. 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