Hello,
I am new to SSIS. I am trying to find a generic solution to log information for DFTs in my packages. The information that I need to log are as follows :-
PackageId
ComponentName
InputRowCount
OutputRowCount
ComponentStarttime
ComponentEndtime
All components in the DFT need to log as shown above. Please note that for Source components "InputRowCount" will be null. And for Destination components "OutputRowCount" will be null. E.g. below :
Pkg123, Extract_Data_from_Source, Null, 35546, 2014-11-16 04:16:10, 2014-11-16 04:25:05
Pkg123, Derived_Column_Add_Fields, 35546, 35546, 2014-11-16 04:25:05, 2014-11-16 04:27:09
Pkg123, Load_to_Destination, 35546, Null, 2014-11-16 04:27:16, 2014-11-16 04:32:16
Any help will be appreciated !
Thanks.