Hi,
I'm calling a SSIS package using LoadPackage(...).
Is it possible to make this call an Asynchronous call?
|
|
Hi, I'm calling a SSIS package using LoadPackage(...). Is it possible to make this call an Asynchronous call?
|
||
|
|
|
|
If you just want it to run in the background then yes, you can either spool up a thread or call some T-SQL to dynamically create a job (and remove it again afterwards). If you want to run it asynchronously and want a callback when it's done, then I think you're out of luck unfortunately. |
||
|
|
|
|
Yes, use an asynchronous delegate, as demostrated here: |
||
|
|
|
|
Are you asking if it's 1) legal to call LoadPackage on a background thread or 2) is it possible. For #1 I can't give a definitive answer because I don't use the SSIS framework. However #2 (as long as #1 is true) is definately doable. IMHO, you're better off using an existing framework which has API's designed to calling API's async and waiting for the results. For instance with Parellel Extensions June 08 CTP, the following code will do.
|
||
|
|
|
|
I'm calling an SSIS package from my UI (WPF) via an async WCF service call. Service code is:
And (part of) the client-side code is as follows:
Where BeginImportMarriageXML & EndImportMarriageXML are the generated async operations in the proxy class. |
||
|
|