Sample script to set up a column with ID 3018 in DataReader Output output of DataReader Source component
Sample script to set up a column with ID 3018 in DataReader Output output of DataReader Source component.
1 2 3 4 5 6 7 8 9 | <DataFlowSetting( New String () { "DataReader Source.Column.Output.DataReader Output.3018" })> _
Public Property Column() As String
Get
Column = m_column
End Get
Set ( ByVal value As String )
m_column = value
End Set
End Property
|
Book a Presales Call
Related Articles
DataFlowSetting .NET attribute used with Data Flow Task Plus
The DataFlowSetting .NET attribute defines a list of references to different component properties in the SSIS data flow. It defines the link between the initialization parameter and a specific SSIS data flow component parameter. You can apply one ...
Sample script to set up the CommandTimeout property of the DataReader Source component
Sample script to set up the CommandTimeout property of the DataReader Source component. 1 2 3 4 5 6 7 8 9 <DataFlowSetting(New String() {"DataReader Source.Property.CommandTimeout"})> _ Public Property CommandTimeout() As Integer Get ...
Where can I find scripts for the Script Task Plus and Script Component Plus?
Although no longer supported, scripts for the Script Task Plus can be found at the following link. We are now supporting scripts for JavaScript Task and JavaScript Component instead. JavaScript Task is an SSIS Control Flow Task that allows ...
Dynamic Data Flow - Dynamic Column Custom Handler
To setup custom routine in the data flow script for additional setup of dynamically added data flow column, attribute your script main class with DataFlowColumnAdded attribute. Set as parameter the name of the script method. Check below the required ...
How to build the data flow setup
The initialization and user interface for a data flow is defined by implementing properties on the script EntryPoint class. The documentation and samples of Script Task Plus for defining parameters is relevant to the Data Flow Task Plus ...