I have simple SSIS package in which On Error event handler I have created Send email task to send error details. But I get multiple emails for one error. I found the ways to club all emails but they are in vb script and my SQL server is 64 bit which in turn requires hotfix installation for binary compilation.
So I need any alternative option for that. It’s fine with me even though I can send first error email and ignore other.
Any suggestion will be appreciated.
I have simple SSIS package in which On Error event handler I have created
Share
I found the solution which meet my requirement of sending first error and ignoring rest.
Used for loop container, declared variable Count with value = 0 and in for loop container set the condition Count < 1; Count = count + 1.