I have to create a SSIS package for the following scenario. First, I have to do a database query . A set of Ids is returned from the query. For each Id , I have to do a web service call which will further call some wcf services sequentially.
The set of ids returned from the database is very large. If I do a web service call for each Id sequentially , it will take a lot of time. So, basically I need to make async call to web service.
Only way I see to solve this problem is to use asynchronous script component of SSIS for calling the web service. Other way would be to call the web service inside a thread in the synchronous script component.
What is the right way to solve the problem or there is any other better approach?

link|improve this question
feedback

1 Answer

Try this:

  • Pull the IDs into a 'queue' table in SQL Server
  • Create N dataflow components.
  • Have each dataflow component pull an id from the queue and make the call.

If you create 8 dataflow components, you can run 8 lookups in parallel. Each one will take an id when it is complete.

Here are some references for the framework:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.