
Overview
Data Flow Source Component is SSIS Data Flow Component for consuming data in data flow from Data Flow Destination component. The configuration options are provided in the standard data flow source component dialog.
Setup
Use the options below to connect to Data Flow Destination component.
Options
- PackageConnection
-
Specify package connection.
- DataFlowDestination
-
Type the data flow destination, or click the browse button ( ) and locate it.
- WaitStart (1.2 SR-3)
-
Variable containing thread synchronization event object. If specified, the component will wait for signal before starting to process data. Check following script how to handle this variable:
' Signals wait start variable. If not initialized yet, initialize to ManualResetEvent. Private Sub SignalStart_() Dim vars As Variables Dim eventSignal As EventWaitHandle Try Call Dts.VariableDispenser.LockOneForWrite(WaitStart, vars) If vars(WaitStart).DataType = TypeCode.Object Then eventSignal = TryCast(vars(WaitStart).Value, EventWaitHandle) If eventSignal Is Nothing Then ' Signal variable is not yet initialized. eventSignal = New ManualResetEvent(True) vars(SignalEnd).Value = eventSignal Else ' Set signal. Call eventSignal.Set() End If Else Throw New ApplicationException("Invalid variable type") End If Finally If Not vars Is Nothing Then Call vars.Unlock() End If End Try End Sub ' SignalStart_
CozyRoc