Flat file has:
A,B
1,2
5,7
DB has:
A,B,C
1,2,null
5,7,null
I'd like to during import update column C with static data "3"
So it looks like:
A,B,C
1,2,3
5,7,3
Thanks in advance!
Hmm looks like this is the best solution: Executing the same SSIS Package with different parameters at different time