SSIS - 如何在 SSIS 脚本任务中引用具有自定义名称空间的变量?
可以为 SSIS 包中的变量创建自定义名称空间。但是,当集合中的多个变量具有相同名称但不同名称空间时,我无法在脚本任务中引用它们。
示例:
Dts.Variables("YourVariableName").Value.ToString
但是,这种引用变量的标准方法不指定名称空间。
Custom name spaces can be created for variables within a SSIS package. However, I cannot reference them from within a script task when more than one variable within the collection has the same name but different name space.
Example:
Dts.Variables("YourVariableName").Value.ToString
However, this standard way of referencing a variable doesn't specify a name space.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常你可以这样做
这对你不起作用吗?
Usually you could just do
Does this not work for you?