I have a scenario: I need to move a huge amount of data, and I need to use BizTalk to control the flow and contain the business logic. The problem is that BizTalk will not be able to process the amount of data that needs to be transferred.
We decided to organize BizTalk Orchestration to launch the SSIS package, which does the actual heavy lift. However, there is a caution that we should be able to transfer information to SSIS, such as the location of the file and information on how to break certain data.
My question is: what is the best way to call SSIS from Orchestration with these parameters in mind? Should I create a web service around it? Is there an adapter or stored procedure that I can call? Or is there a way to call him directly from the Orchestra?
source
share