I'd like to know if an SSIS package can accommodate a source that will vary in the number of columns it contains. The column names are in the first row and the flat file columns would map to table columns of the same name.
For example, say that I have a csv file to import like this:
Col-A,Col-B,Col-C
22,43,12
35,22,94
The next csv file might be:
Col-B,Col-C
82,76
19 74
and then:
Col-A,Col-B,Col-D
28,46,82
91,73,88
Can an SSIS package handle these inputs as intended?
Thanks!
Marge