通过 Web 应用程序安排 SSIS
有谁知道用户能够通过 Web 应用程序指定 SSIS 包的时间表的好方法吗? 该包每天运行一次,但用户需要能够配置它的运行时间。 即每天@ 7am 或每天@ 8am 等。
Does anyone know of a good way for a user to be able to specify the schedule for a SSIS package through a web application? The package will run once a day, but the user needs to be able to configure the time that it will run. i.e. every day @ 7am or every day @ 8am etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SMO 来管理 SQL Server 代理,该代理用于调度 SSIS 包(或多个包)。 使用 JobServer 对象开始。
您可能想要在 SQL Server Management Studio 中手动创建作业,然后只需使用 SMO 来调整计划。
You use SMO to manage the SQL Server Agent, which is what you use to schedule an SSIS package (or packages). Use the JobServer object to get started.
You may want to create the job manually in SQL Server Management Studio, then just use SMO to adjust the schedule.