SSIS FTP任务中的异常处理
我的 SSIS 包中有一个 FTP 任务,它从 FTP 位置删除文件。 但问题是,如果文件或目录在服务器上不可用,任务就会失败。
有什么办法可以解决这个问题吗?
I have a FTP task in my SSIS package which deletes files from FTP location.
But the issue is that if the file(s) or directory is not available on the server, the task gets failed.
Is there any way that I can fix this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是预期的行为。该任务应该失败,然后您应该执行一些操作来检测失败。该逻辑可以在任务失败事件上执行,也可以通过将红色箭头绘制到 FTP 任务中的某些错误处理逻辑来执行。
That is the expected behavior. The task should fail and then you should do something detecting the failure. This logic can be executed on the task failure event or by drawing the red arrow to some error handling logic from the FTP task.