user455100
user455100

Reputation: 151

SSIS: How to step through code in a Script Component or Task?

I would really like to be able to see my code in action because it is failing, but i don't know where.

Upvotes: 1

Views: 1455

Answers (1)

Jeff Hornby
Jeff Hornby

Reputation: 13680

Script Tasks will let you set breakpoints and step through them. Script components (in data flows) are a little trickier. I usually just sprinkle them with MessageBoxes to help me figure out where the code is failing and what the values of key variables are.

Upvotes: 1

Related Questions