How To
How to validate parameters
To validate parameters, specify ValidateProperties attribute on the parameters class. Specify method name as attribute parameter. The specified method will be called when the user presses OK in the dialog. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ...
How to filter parameters
To filter parameters based on the current state, specify the FilterProperties attribute on the parameters class. Specify the method name as attribute parameter. The specified method is dynamically called every time the class parameters are refreshed. ...
How to sort parameters
To sort parameters according to a custom defined order, specify the SortProperties attribute on the parameters class. 1 2 3 <SortProperties(New String() {"Connection", "TargetFile", "Database"})> _ Public Class ScriptMain …
How to provide a category and description for a parameter.
Category and description are provided with standard System.ComponentModel attributes Category and Description. 1 2 3 4 5 6 7 8 9 10 11 <Connection("ConnectionType")> _ <Category("General")> _ <Description("Select connection you would like to use.")> ...
How to upgrade a script in Script Task Plus from 2005 to 2008
How to upgrade your script from 2005 to 2008 In order for this process to work, you must have both SQL 2005 and 2008 installed side-by-side on the same machine. Most of the scripts published in the public script repository are for SQL 2005. However ...
How to start
Go to Toolbox and open the Choose Toolbox Items ... dialog. Press the SSIS Control Flow Items tab and select Script Task Plus. Drag Script Task Plus into your control flow package and open the Design Script IDE. Add a reference in the script project ...