We have a SSIS package that pulls data from multiple data sources.
So, the ssis package has Execute SQL task that feeds the list of SQL Servers to be used a data sources.
The second step is For Each Loop that has data flow task. The Source Connection manager is expression based with servername as variable.
This works fine the only issue is, if the data source is not available, I do not want the package to fail but rather log that error and continue processing other data sources.
Any thoughts how to make the package continue processing other data source without failing the package, if one of them is not accessible.
Hope it Helps!!