Branching after a file system task in SSIS without failing the package

前端 未结 9 2002
孤城傲影
孤城傲影 2021-01-22 16:56

If a file system task such as a rename fails, for example if the file does not exist, then this is considered an error by SSIS. This means the whole package fails. I can get aro

9条回答
  •  Happy的楠姐
    2021-01-22 17:43

    prashant_sp answer is the right one, you just have to continue unconditionnally to the next task, by not selecting the "on success" workflow precedence constraint, but the "redirect" one which will always continue, even if your FS task fails (folder does not exist, etc...)

    Kind regards

提交回复
热议问题