在作业中运行 SSIS 和 DTS 包的安装要求
我的要求如下。 SSIS 和 DTS 包存储在网络服务器上(而不是数据库中),我需要通过单击 ASP.NET 网页上的按钮来执行它们,并且如果它们挂起一段时间,则能够中止它们(再次通过用户操作)原因。用户无权访问 sql server management studio 或企业管理器。如果我从此链接选择在作业中执行包的第三个选项 http://blogs.msdn.com/b/michen/archive/2007/03/22/running-ssis-package-programmatically.aspx,那么我该怎么办除了 SSIS 和 DTS 运行时库之外,还需要在 WEBSERVER 上安装才能使其正常工作吗?我需要在网络服务器上安装任何 SQL 组件吗?
my requirement is as follows. the SSIS and DTS packages are stored on the webserver (not in database) and I need to execute them on click of a button on an ASP.NET web page and be able to abort them (again by user action) if they hang for some reason. user doesn't have access to sql server management studio or enterprise manager. if I choose the third option of executing the package in a job from this link http://blogs.msdn.com/b/michen/archive/2007/03/22/running-ssis-package-programmatically.aspx, then what do I need to install on the WEBSERVER apart from SSIS and DTS runtime libraries for this to work? do I need to install any SQL components on the webserver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从您提供的链接中,“缺点”部分的选项 3 下:“代理需要安装 SQL Server 引擎”。由于您选择了作为 Sql 代理作业运行的选项,因此需要在 Web 服务器上安装 SQL Server 引擎才能使用此选项。
From the link you provided, under option 3 in the "Drawbacks" section: "Agent requires installation of SQL Server engine." Since you chose the option to run as a Sql Agent Job, the SQL Server engine is required to be installed on the webserver to use this option.