从 SSIS 远程执行
我的服务器 A 正在运行 SSIS,服务器 B 中有一个可执行文件。我需要从 SSIS 运行这个可执行文件。
我尝试使用 PsExec 并设法从服务器 A 运行可执行文件。但是,我需要从 SSIS 执行此操作,并且不知道如何从 SSIS 执行此操作或将 PsExec 与 SSIS 合并。
I have server A with SSIS running and an executable file in server B. I need to run this executable file from SSIS.
I tried with PsExec and managed to run the executable from server A. But, I need to execute this from SSIS and have no idea how to do it from SSIS or incorporate PsExec with SSIS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用 执行进程任务。
只需将您使用的
PsExec
命令复制到“执行进程任务”编辑器中的Executable
属性中即可。或者,您可以将PsExec
放入Executable
属性中,并将命令的其余部分放入Arguments
属性中。您可以在以下文章中了解有关此控件的更多信息:
You can simply run this executable using the Execute Process Task.
Just copy the
PsExec
command you used into theExecutable
property in the Execute Process Task editor. Or you can putPsExec
into theExecutable
property and the rest of the command into theArguments
property.You can learn more about this control in the following article: