I have a ssis package which exports data from excel files and dump it into a SQL Table. For processing files, I am using a foreach
loop and a dataflow opens an excel source and dumps data into ole db destination. If any file is not containing the required tab, I want the ssis package to log error and move to next iteration. I have tried following things but the package fails:
- Propagation = false
- ForceExecutionResult = Success
How can I handle this?
Attached images are the screen shots of control flow, data flow and progress.