Question : how to run SSIS package until it succeeds

I have a package that ones in a while fails because it connects to a server at a different building that runs late maintenance.  I want the package to retry until it succeeds.  Is this posible?

Answer : how to run SSIS package until it succeeds

yes, that was exit script task.
in loop task:
just set value of variable as 0 again in main()
Dts.Variables["User::venum"].Value = 0;

Random Solutions  
 
programming4us programming4us