sql server - Execute one SSIS Package from Another, but using a DIFFERENT proxy user. Is it possible? -
i have 1 ssis package must run proxy a
, must run proxy b
. love have first package run, and, 1 of tasks, execute second package. possible?
thanks lot!
you have first package use sp_start_job kick off job set run second package. if "fire-and-forget", that's need do. if need wait until it's completed, things more messy - you'd have loop around calling (and parsing output of) sp_help_jobactivity , use waitfor delay
until run completes.
this more complex if need determine actual outcome of running second package.
Comments
Post a Comment