Inability to detect output from inside an SSIS script component

In the script components of the script, the output buffer is not detected as an existing component.

I am trying to use the following code snippet

Output0Buffer.AddRow ();

inside public override void Input0_ProcessInputRow (Input0Buffer Row)

method. I know that it should be available in 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, not

Can anyone explain why this is happening?

+3
source share
1 answer

you can make sure that you set the value of SynchronousInputID to 0. It may have changed when copying the code.

http://msdn.microsoft.com/en-us/library/ms136133.aspx

+6

Source: https://habr.com/ru/post/1750624/


All Articles