SSIS 2008 R2 - 如何在运行时动态更改连接
我正在使用 SQL Server SSIS 2008 R2。
我想在运行时动态更改 OLEDB 连接管理器,以指向包运行期间确定的数据库。
这意味着我无法使用配置文件。
我该怎么做?
I am using SQL Server SSIS 2008 R2.
I want to dynamically change a connection manager for OLEDB during runtime to point at a database determined during the running of the package.
This means that I cannot use configuration files.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用表达式并使用要更改的连接属性填充变量。在每个对象的属性中,有一个称为表达式的字段,您可以打开该字段并动态更改任何内容。
You would use expressions and populate a variable with the connection property you would like to change. In the properties of each object, there is a field called expressions, which you can open up and dynamically change anything.
使用连接管理器属性窗口中的表达式在运行时构造值
http://consultingblogs.emc.com/jamiethomson/archive/2006/03/11/SSIS-Nugget_3A00_-Setting-expressions.aspx
Use expressions in the connection manager properties windows to construct the value in runtime
http://consultingblogs.emc.com/jamiethomson/archive/2006/03/11/SSIS-Nugget_3A00_-Setting-expressions.aspx