我使用 MS Visual Studio 2008 创建了一个商业智能项目。在 dtsx 中,我有一个简单的邮件任务。如何使用 dtsConfig 文件中的 MailTo 变量?
<Configuration ConfiguredType="Property" Path="\Package.Variables[User::MailTo].Properties[Value]" ValueType="String">
<ConfiguredValue>hello@world.com</ConfiguredValue>
</Configuration>
现在我正在使用 Windows 批处理脚本来运行这个 dtsx 包。
dtexec /f "D:\MyPath\Sample.dtsx" /conf "D:\MyPath\Sample.dtsConfig"
当我在更改配置文件变量后执行时[User::MailTo]
,它没有工作。它将邮件发送到以前的邮件ID。
如何[User::MailTo]
在运行时使用 dtsConfig 文件中的变量?
提前致谢...