Getting column name from PipelineBuffer in Script Component in SSIS 2012
问题 I'm trying to get the column name and index from the PipelineBuffer in my script component transformation is SSIS and add them to a Hashtable. I know this is possible if I change my class from: public class ScriptMain : UserComponent to ScriptMain : PipelineComponent and use this code: public override void ProcessInput(int InputID, Microsoft.SqlServer.Dts.Pipeline.PipelineBuffer Buffer) { inputBuffer = Buffer; hash = new Hashtable(); IDTSInput100 i = ComponentMetaData.InputCollection