In my SSIS Package I load data into a staging table from multiple sources. Once all data is loaded I would like to submit all records to a web service and then store returned IDs in the same staging table. Let's say the staging table looks like this:
ServiceID | ColA | ColB
NULL | xxx | yyy
NULL | vvv | zzz
I was thinking about creating a Data Flow Task that reads from the table, then executes a Script Component, which submits data to my web service and then updates the table with returned IDs. Is this possible or do I need to create an identical table, that would receive the updated data?