Problem.
I regularly receive files with different columns. Although the column names are consistent the problem comes when some text files with more or less columns.
Furthermore the arrangement of these files are inconsistent, I would like to import everything for each file in my database table.
I tried importing them using ssis package but it keeps of failing when it has to import other files, how do I go about importing these files.
Is it something possible or am I wasting my time with it? I'm fairly new on ssis.
File 1
Name|Surname|ID|Address
File 2
Name|Surname|Address|Spouse|Work|Child1|Child2
DB Table after importing
Name|Surname|ID|Address|Spouse|Work|Child1|Child2
on top is just a simple example but the original files has much more complicated number of columns.