安排 SSIS 包执行
如何安排 SSIS 在每天的给定时间自动执行文件中的包?
How do I schedule SSIS to automatically execute a package from a file at a given time every day?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您有几个选择,但我会给您一些可以让您快速启动和运行的选项...
需要记住的几件事...
有关其他信息,请参阅 https://msdn.microsoft.com/en-us/library/ms191439%28v=sql.105%29.aspx?f=255&MSPPError=-2147217396
You have a few options, but I'll give you something that will allow you to get up and running quickly...
A couple of things to keep in mind...
For additional information, please see https://msdn.microsoft.com/en-us/library/ms191439%28v=sql.105%29.aspx?f=255&MSPPError=-2147217396
我更喜欢上面的答案,但也可以使用 Windows 任务计划程序并使用 dtexec。 (仅适用于 SSIS 服务器)还可以使用 dtexec 执行
I prefer the above anwser but it is also possible with the windows Task Scheduler and start your ssis package with dtexec. (Only possible on the SSIS server) Check also execution with dtexec
第一个选择 - 如果可能的话是调度包:
1)使用 SQL Server 代理执行标准作业
2)非标准 Windows 任务调度,取决于包正在做什么
3)dtexec 可以很好地发挥作用,但这取决于什么ssis 任务包运行
4) ssis 包执行的任务越多,可能需要的 dtexec 配置就越多
并设置为与 Windows 调度程序完美配合
First choice - if possible is to to schedule the package:
1) using the SQL Server Agent for the standard jobs
2) non-standard windows task scheduling, depends on what the package is doing
3) dtexec can play nicely but it depends on what ssis tasks the package runs
4) the more the ssis package does, the more it may require of the dtexec config
and set up to play nicely with the windows scheduler