In SSIS I have a package that executes several for each loops in sequence that sets user variables to true or false depending on whether files are found or not found on a shared drive. What I would like to do next in the package is evaluate each user
variable and execute a stored procedure that will test if each file has been loaded previously into a table. I am not sure how to set-up the execution path so that SQL Tasks will be executed independently in sequence. For example, If I have 3 user varibles,
after the last for each loop I would like to run 3 SQL Tasks independently depending on whether the user variable is true or false. The execution path would move from left to right with each path being used to execute one of the 3 SQL Tasks.
↧