-3

In SSIS, I should save a part of control flow to another file and take it when needed. Is it possible?

Burak Karakuş
  • 1,368
  • 5
  • 20
  • 43

1 Answers1

1

Yes you can do this using the "Execute Package Task"

  1. Take the relevant part of your control flow and put it into a brand new package. This will be your "child" package.
  2. Back in your original "parent" package, add the "Execute Pacakge Task" to your control flow.
  3. Configure the Execute Package Task to point to your saved child package from step #1.
Bert Wagner
  • 851
  • 1
  • 11
  • 23