All Tags »
SSIS »
Dataflow Task »
SQL Server Inte... »
pipeline component
Sorry, but there are no more tags available to filter with.
-
A short FYI here to anyone building custom SSIS components. If you need to find out whether the component's input is sorted or not you cannot check the IsSorted property of the input - it will always return false regardless of whether the input is sorted or not. Instead, you need to check the virtual input.
In other words, the following code ...