SSIS 在 MSDB 中部署主子包
我有一个主 SSIS 包和三个子包,所有这些包都是单个解决方案的一部分。我通过执行包任务和指向文件系统上子包的连接管理器来调用子包。
现在我想将这些包部署到 MSDB 数据库中。我已经通过部署实用程序创建了 SSISDeploymentManifest 文件。我计划在运行清单文件时选择 SQLServer 作为选项,但如何更改连接管理器以指向 msdb 数据库上的子包而不是文件系统上的子包。
谢谢
I have a master SSIS package with three child packages and all these packages are part of a single solution. I 'm calling child packages through Execute Package task and connection managers pointing to child packages on the file system.
Now i want to deploy these packages in MSDB database. I have created SSISDeploymentManifest file through deployment utility. I'm planning to select SQLServer as the option while running manifest file, but how do i change connection managers to point to child packages on msdb database instead of the ones on file system.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,请执行以下操作:
然后,您可以删除包中关联的包连接,这些连接将不再使用,因为您正在使用 msdb。
To do this:
You can then delete the associated package connections in your package, which will be no longer used as you are using msdb.