Reputation: 13
I need to process all the files in a folder. something like this:
foreach loop over n
fileprocess.exe -argument_n filename_n
each argument is file specific and will be retrieved from a table. Need to design ssis package to batch process the files. foreach loop seems perfect for it.
I'm thinking of using lookup transform to retrieve the corresponding argument. My question are
@[user::filename]
to the lookup transform?@[user::argument]
Thanks a lot!
Upvotes: 0
Views: 3277
Reputation: 21757
Assuming that you have a table containing columns for file name and corresponding argument, one way to implement your requirement is as below:
Upvotes: 1