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
Asked
Active
Viewed 97 times
0
-
Does [This](https://www.sqlshack.com/overview-of-ssis-package-logging/) help? – Bee_Riii Apr 09 '21 at 08:38
-
1Are you deploying the the SSISDB? If so, that data is already captured for you – billinkc Apr 09 '21 at 14:28
1 Answers
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 :
Or you can use containers and then use precedence constraints with success and failure

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