What is the order of event handler execution in SSIS, please?
For example, I would think OnPreValidate occurs before OnPostValidate. It would be handy if the drop-down list was in the order of execution (if that's possible.)
I searched and didn't find anything yet. For reference for others interested to know what they do, this is Microsoft's BOL page for it.
- OnError
- OnExecStatusChanged
- OnInformation
- OnPostExecute
- OnPostValidate
- OnPreExecute
- OnPreValidate
- OnProgress
- OnQueryCancel
- OnTaskFailed
- OnVariableValueChanged
- OnWarning
Thanks for the help. (I saw an answer for C# here, but not sure if it's the same for SSIS.)