I have multiple flat files as my source. Each files are having some common columns. But there are also some extra columns in one of them. I need to move all the data from flat files to a table having the structure with just the common columns and skip the extra columns in the one of the files. Structure examples below:
Structure of File 1:
id, name, age
Structure of File 2:
id, name, age, address, country
Structure of File 3:
id, name, age, address
Structure of Table:
id, name, age
I want to populate the table for only the three common columns between the files. Rest I need to ignore. How can I achieve this using SSIS?