I use SSIS for transferring the data and I use SQL server 2016 I need to use some lookup component in my DataFlow task and if I can't find the matches, I should save the record as information in one table. That means if for each Lookup component I can't find the related record I have to save that row in a table.
I have to type of DataFlow design and i would like to know which one is better than other?
You can see the DataFlow design in below Images.
In this pattern I use two separate OLE DB Destination but in both, I am saving the information in the same Table.
In this Pattern I use the Union All Component to union all records and save them in the same time in Destination table.
I would like to know which design is better than another and what is the pros and cons of each design?