How can we abort the post in ProcessInputRow() event in SQL SSIS Script Component?
- by Rick
How can we abort the table post in this event:
public override void Input0_ProcessInputRow(Input0Buffer Row)
... based on an input table field condition in our SSIS Script Component?
For example
if(Row.BoolValue)
AbortPost();
We don't want to abort the whole process just this one record post. This is one record from the input table we don't want in the output table.