Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 3.32 KB

File metadata and controls

51 lines (38 loc) · 3.32 KB
title Developing Specific Types of Data Flow Components
description Developing Specific Types of Data Flow Components
author chugugrace
ms.author chugu
ms.date 03/06/2017
ms.service sql
ms.subservice integration-services
ms.topic reference
helpviewer_keywords
data flow task [Integration Services], components
components [Integration Services], data flow
data flow [Integration Services], components
dev_langs
VB
CSharp

Developing Specific Types of Data Flow Components

[!INCLUDEsqlserver-ssis]

This section covers the specifics of developing source components, transformation components with synchronous outputs, transformation components with asynchronous outputs, and destination components.

For information about component development in general, see Developing a Custom Data Flow Component.

In This Section

Developing a Custom Source Component
Contains information on developing a component that accesses data from an external data source and supplies it to downstream components in the data flow.

Developing a Custom Transformation Component with Synchronous Outputs
Contains information on developing a transformation component whose outputs are synchronous to its inputs. These components do not add data to the data flow, but process data as it passes through.

Developing a Custom Transformation Component with Asynchronous Outputs
Contains information on developing a transformation component whose outputs are not synchronous to its inputs. These components receive data from upstream components, but also add data to the dataflow.

Developing a Custom Destination Component
Contains information on developing a component that receives rows from upstream components in the data flow and writes them to an external data source.

Reference

xref:Microsoft.SqlServer.Dts.Pipeline
Contains the classes and interfaces used to create custom data flow components.

xref:Microsoft.SqlServer.Dts.Pipeline.Wrapper
Contains the unmanaged classes and interfaces of the data flow task. The developer uses these, and the managed xref:Microsoft.SqlServer.Dts.Pipeline namespace, when building a data flow programmatically or creating custom data flow components.

See Also

Comparing Scripting Solutions and Custom Objects
Developing Specific Types of Script Components