SSIS执行进程任务:有没有办法获取退出代码?
设置退出代码表示成功很简单。但我希望获得进程退出代码并用它来区分不同类型的错误。
这可能吗?
It is simple to set which exit code means success. But I am hoping to get the process exit code and use it to differentiate between different types of errors.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用执行流程任务的 ExecValueVariable 属性。它在编程中记录 SSIS 的参考,但您可以直接在任务的“属性”窗口中设置它。它捕获 不同任务的不同值类型;对于执行流程任务,它捕获流程的返回代码。
You can use the ExecValueVariable property of the Execute Process task. It's documented in the programming reference for SSIS, but you can set it directly in the Properties window for the task. It captures different values for different task types; for the Execute Process task it captures the return code from the process.