0

Let's there is a master package and several tasks run in it on a daily basis, I want to specifically determine when those tasks have finished like table load completed and cuble load completed, these steps run daily but I have to show this in a SQL table that this particular day table load started at this time and ended at this like etc

jarlh
  • 42,561
  • 8
  • 45
  • 63
Nikki
  • 1
  • 1

1 Answers1

0

SSIS event handlers are the simplest means of turning an SSIS script into a reliable system that is auditable, reacts appropriately to error conditions, reports progress and allows instrumentation and monitoring your SSIS packages. They are easy to implement, and provide a great deal of flexibility. Rob Sheldon once again provides the easy, clear introduction.

You can use on PostExecute and when the tasks runs successfully :

enter image description here

enter image description here

enter image description here

Or you can use containers and then use precedence constraints with success and failure https://i.stack.imgur.com/XFsoW.png

Amira Bedhiafi
  • 8,088
  • 6
  • 24
  • 60