Solved

Executing SSIS package

  • 3 June 2021
  • 1 reply
  • 52 views

We currently execute an SSIS package via Execute External SSIS Package.  We want to start using SSIS environments to better manage dev/prod values and passwords.  The problem with the Execute External SSIS Package is that we are not able to call the SSIS package using an SSIS Environment.  To get around this, we created a Script Action that executes the SSIS package with an SSIS Environment, and then set this script action as a Post Script on a table that is executed in our Execution Package.  The problem I am facing is that calling the SSIS package in this manor calls it asynchronously.  Is there a way to synchronously call an SSIS package with an SSIS Environment?

icon

Best answer by dan.beggs 3 June 2021, 18:40

View original

1 reply

I figured out that you can call SSISDB.catalog.start_execution synchronously instead of the default of asynchronously.  This should give me what I need.

Reply