I am trying to work on a scenario where I have a flat file with uneven number of columns and the data from the flat file should be sent to multiple sql tables.
Example flat file sample
Header segment A , B , C
Start segment A, B
End segment A, C , D, E , F
Trailer segment T, B, S
flat file -> Database tables
T1 gets columns from start segment (say B)
T2 gets columns from end segment (say C, D, E, F) How to go around this using SSIS?
Thanks in advance.