I’ve a SSIS package with more than 1 data Flow, If the 1st Dataflow fail I don’t want to execute the follows. How can I stop the execution of the package. I tried using red arrow and script task doing nothing but I it doesn’t work. the others dataflows are executed as well getting all the errors to my .net client. I need only the error for the Data flow that fail.
Anyone know how can I get it
Thanks
You can set
MaximumErrorCountTo1on yourdata flow task, but this is the default value. Same goes for the value at package level, if you set this to1, the package terminates with error if you task fails.But as i said, these are default values and you shouldn’t have anything to do. Do you execute the
data flow tasksall together? If you do, build one path which executes all the tasks after another.