Hi All,
I have a execute sql task which trigger a Stored Procedure which calls multiple storeproc's. If any one of the proc is got failed, executesql task should be failed.
Eg:
Create proc ABC as
begin
Exec A1
Exec A2
Exec B1
End
In the above example ABC would be triggered in Executesql task. suppose A2 proc got failed.then execution will not be done for B1 and the task should be failed. how can we do this? Can any one help on this?
Thanks & Regards, Anil