Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSIS Custom Transforms - what is MappedColumnID

Tags:

ssis

SSIS developer documentation is notoriously terse, and I've scoured Google looking for an answer on this...

What is the MappedColumnID property (available on input, output and external metadata columns) all about? It doesn't appear to do anything useful.

Perhaps to rephrase the question... how do I achieve mappings between meta data columns and input / output columns? I know about the ExternalMetaDataColumnID property... but then how/where does MappedColumnID come into play?

Moreover, components like the OLEDB destination have a column mapping editor which appears in both the component UI as well as in the advanced editor. How is this achieved?

like image 702
Mark Avatar asked Mar 11 '11 08:03

Mark


1 Answers

MappedColumnID is just an alternative way of identifying the columns instead of using there names. From MSDN

The use of these properties is not required. These properties provide an easier way for developers to associate related columns, such as input and output columns, in custom data flow components.

like image 107
CPU_BUSY Avatar answered Jan 03 '23 15:01

CPU_BUSY