SSIS 2008 运行顺序包的最佳方式
此时,我创建了几个现在需要在最后按顺序运行的包。 怎么做呢? 我是否应该再次创建一个新包并使用执行包任务来构建我的流程?
感谢您的提示
At this point,I created several packages that need now to be run sequentially at the end.
How to do that?
Shall I create again a new package and use Execute Package tasks to build my process flow?
Thanks for your tips
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这可能是一个很好的解决方案。
或者,您可以使用批处理文件并多次调用 dtexec 实用程序。
例如:
在第二个命令中,您可以设置一个包变量。必须更改
VariableName
和CurrentValue
。更多信息请访问 MSDN
Yes, it can be a good solution.
Alternatively you can use a batch file and call dtexec utility more times.
For instance:
In the second command you can set a package variable.
VariableName
, andCurrentValue
must be changed.More information visit MSDN
您可以从 SQL 作业运行 SSIS 包。
您可以轻松地在作业步骤中对包进行排序。
You run the SSIS packages from SQL Jobs.
You can easily sequence the packages in the Job Steps.