Chris Burgess
Chris Burgess

Reputation: 5835

How to step through foreach loop task?

In SSIS, how do I step through a foreach loop in debug to see each step within it individually? I've added breakpoints, but they don't seem to break on them in debug?

Thanks!

Upvotes: 0

Views: 5358

Answers (1)

Michael Entin
Michael Entin

Reputation: 7764

I would add OnPreExecute breakpoint to the first task inside the foreach loop.

Upvotes: 3

Related Questions