In SSIS, how do I get the number of rows returned from the Source that SHOULD be processed

前端 未结 5 1936
感情败类
感情败类 2020-12-11 05:43

I am working on a project to add logging to our SSIS packages. I am doing my own custom logging by implementing some of the event handlers. I have implemented the OnInformat

5条回答
  •  旧巷少年郎
    2020-12-11 06:40

    What you want is the Row Count transformation. Just add that to your data flow after your source query, and assign its output to a variable. Then you can write that variable to your log file.

提交回复
热议问题