0

I've got an Execute Process Task that is failing. I'm capturing the output in StandardOutputVariable. Right now when the package fails it just says it failed at Execute Process Task with no helpful information. The StandardOutputVariable holds the exact failure message. I'd like that message to be in stdout. How do I do that?

Thom A
  • 88,727
  • 11
  • 45
  • 75
Rich Uchytil
  • 457
  • 1
  • 7
  • 16

1 Answers1

1

You can add a TaskFailed event handler to your "Execute Process Task" with a "Script Task" that fires a DTS event (Information, Warning or Error) with the content of the StandardOutputVariable as the event message.

SSIS TaskFailed Event Handler