Google News
logo
SSIS - Interview Questions
Why do we use the Ignore Failure option in SSIS?
The ignore failure option in SSIS is mainly used to ignore the errors during the transformation process. Using this, an error is ignored, and the data row is iterated to move on to the next transformation.
 
This option helps in a scenario where we have incorrect data (JUNK data) coming from the source. We can use the Ignore failure option to redirect such data to another transformation instead of failing the entire package. The option simply allows us to move only valid data to the destination. Additionally, it helps to move incorrect data into a separate file.
Advertisement