In my SSIS package, I have a For Each Loop which loops through a set of DBs located in different servers. The loop has a Script Task inside that sets the connection String for the server/DB dynamically.
The loop will enumerate through Server1/DB1, Server2/DB2 etc.
My requirement is to make the for loop continue through the list of the Servers specified though one of the connections fails.
For example, if the Server2/DB2 is down, I would like the loop to still process and execute the Dataflow tasks for Server1/DB1 and Server3/DB3.
Any help would be appreciated!
Thanks!!