PostSourceDataFunctionEntry Property

DTS Programming

DTS Programming

PostSourceDataFunctionEntry Property

The PostSourceDataFunctionEntry property specifies or returns the name of the script function that is to be called for the PostSourceData transformation phase.

Applies To
DTSTransformScriptProperties2 Object
Syntax

object.PostSourceDataFunctionEntry [= name]

Part Description
object Expression that evaluates to a DTSTransformScriptProperties2 object
name Name of the script function that supports PostSourceData phase

Data Type

String

Modifiable

Read/write

Prototype (C/C++)

HRESULT PostSourceDataFunctionEntry(BSTR* pRetVal);

HRESULT PostSourceDataFunctionEntry(BSTR pRetVal);

Remarks

The PostSourceData phase occurs after the last source row is processed in the DataPumpTask2 or DataDrivenQueryTask2 object or after the last row of a constituent rowset is processed in the source hierarchical rowset of the ParallelDataPumpTask object.

The PostSourceData script function has no access to the columns of the DTSSource collection and write access to the columns of the DTSDestination collection. Any return values that are valid during the Transform phase can be returned.

The property also can be referenced through the TransformServerProperties collection with the following code:

Set transprops = transform.TransformServerProperties
transprops("PostSourceDataFunctionEntry") [= string]

See Also

BatchCompleteFunctionEntry Property

DataDrivenQueryTask2 Object

DataPumpTask2 Object

DTSTransformStatus

FunctionEntry Property

InsertFailureFunctionEntry Property

InsertSuccessFunctionEntry Property

ParallelDataPumpTask Object

PreSourceDataFunctionEntry Property

PumpCompleteFunctionEntry Property

TransformFailureFunctionEntry Property