SSIS XML DTSConfig 更新(VS 2005)

发布于 2024-11-06 07:20:31 字数 112 浏览 0 评论 0原文

我有一个带有 XML 配置 (.dtsconfig) 文件的 DTS 包,其中有一些信息需要在每次包运行时更新。

有没有办法更新 .dtsconfiguration 文件?

谢谢

I have a DTS package with a XML configuration (.dtsconfig) file where i have some information that needs to be updated every time the package runs.

Is there a way to update the .dtsconfiguration file?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤星 2024-11-13 07:20:31

好的。我还没有找到一种方法来做到这一点,所以我创建了一个脚本来更新我想要的元素。

Dim xml As Xml.XmlDocument
Dim xpathTemplate As String
Dim fname As String

xpathTemplate = "/DTSConfiguration/Configuration[@Path='\Package.Variables[User::{0}].Properties[Value]']/ConfiguredValue"
fname = "config.dtsConfig"
xml = New Xml.XmlDocument()
xml.Load(fname)
xml.SelectSingleNode(String.Format(xpathTemplate, "myElement")).InnerText = "updated!"
xml.Save(fname)

因为我只想更新一个字段,所以我使用了这种方法。

Ok. i haven't found a way to do this so i created a script that updated the elements i wanted.

Dim xml As Xml.XmlDocument
Dim xpathTemplate As String
Dim fname As String

xpathTemplate = "/DTSConfiguration/Configuration[@Path='\Package.Variables[User::{0}].Properties[Value]']/ConfiguredValue"
fname = "config.dtsConfig"
xml = New Xml.XmlDocument()
xml.Load(fname)
xml.SelectSingleNode(String.Format(xpathTemplate, "myElement")).InnerText = "updated!"
xml.Save(fname)

Since i just wanted to update one field i used this method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文