How can we abort the post in ProcessInputRow() event in SQL SSIS Script Component?
Posted
by Rick
on Stack Overflow
See other posts from Stack Overflow
or by Rick
Published on 2010-05-04T21:51:25Z
Indexed on
2010/05/04
21:58 UTC
Read the original article
Hit count: 417
ssis-data-tranformations
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.
© Stack Overflow or respective owner