Inability to detect the Output from inside a SSIS script component
Posted
by Danaja
on Stack Overflow
See other posts from Stack Overflow
or by Danaja
Published on 2010-06-18T07:04:59Z
Indexed on
2010/06/18
7:13 UTC
Read the original article
Hit count: 192
ssis
|ssis-data-tranformations
In the script of the script components the Output buffer is not being detected as an existing component.
I am trying to use the following piece of code
Output0Buffer.AddRow();
within the public override void Input0_ProcessInputRow(Input0Buffer Row)
method. I know it should be available within this method because at the moment I am copying and using a component from a previous project that has this code and it works.
but when I create a new component and put the same code in it doesn't
Can any one explain why this is happening?
© Stack Overflow or respective owner