Transformation der SSIS -Skriptkomponenten - zusammengeführte Puffer

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Transformation der SSIS -Skriptkomponenten - zusammengeführte Puffer

by Anonymous » 16 Mar 2025, 23:22

Ich habe eine SSIS -Skriptkomponente der Typ -Transformation erstellt. Standardmäßig hat diese Komponente eine Eingabe (

Code: Select all

Input 0
) und eine Ausgabe (

Code: Select all

Output 0
). Ich habe die zweite Ausgabe hinzugefügt (

Code: Select all

Output 1
) zu dieser Komponente. Im Hintergrund erstellt SSIS pufferwrapper.cs , componentWrapper.cs und main.cs (mit Benutzercode). Für die zweite Ausgabe wurde separate Ausgabe erstellt. Warum SSIS nicht drei separate Puffer input0Buffer , output0Buffer , output1buffer ?

Top