ssis 消息框(作业运行包)
在我的 SSIS 包中,有一个脚本,它为 foreach 循环中的每个项目弹出消息框。这对我调试时有好处。但是当我使用 Job 运行这个包时会发生什么?我知道我想看到任何消息框,但它是否保留在内存中的某个位置?有影响吗?
In my SSIS package there is a Script which has message box pops up for each item in foreach loop. This is good for me when debugging. But what happens when I run this package using Job? I know I want see any message boxes but does it stay somewhere in memory? Does it have any influence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用事件日志或数据库审核表来记录活动。您将无法控制已部署包的任何消息框,并且您不希望自包含的计划包需要人工干预来保持其处理。
Try using either the event log or a database audit table to record the activity. You will not have a handle over any message box for a deployed package and you do not want a self contained scheduled package to require human intervention to keep it processing.