我正在命令行上使用dtexec.exe
执行SSIS包。包调用MessageBox.Show()
和MsgBox()
(分别为C#和VB.NET)来显示错误。这些盒子正在挂起自动作业处理器,因为它正在等待盒子关闭。
我在the impression之下,当不处于交互模式时,应该隐藏这些框。可以在不修改SSIS包的情况下抑制消息框吗?该软件包来自软件供应商,我真的不应该改变它。
编辑:我正在使用的完整命令(已编辑以删除详细信息)
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTExec.exe /F D:\Path\To\Package.dtsx /Conn DBConnection;"Provider=SQLOLEDB;Data Source=SERVER;Initial Catalog=DB;Integrated Security=SSPI;Connect Timeout=60" \Package.Variables[User::InputFileName].Properties[Value];C:\Path\To\Input.csv
EDIT2:消息框代码示例。这是一个脚本任务。
Public Sub Main()
MsgBox("Failed to read/parse input file or generic database failure while running " + Dts.Variables("System::PackageName").Value.ToString() + ". Please check the layout of the feed and database connectivity.")
Dts.TaskResult = ScriptResults.Failure
End Sub
EDIT3:如果将来有人对测试InteractiveMode的代码感兴趣。它也必须通过Script Task的ReadOnlyVariables传入。我最后修改了包,因为还有其他问题。
VB.NET
If CBool(Dts.Variables("System::InteractiveMode").Value) = True Then
....
End if
C#
if ((bool)Dts.Variables["System::InteractiveMode"].Value == true)
....
}
答案 0 :(得分:0)
如果将来有人对测试InteractiveMode的代码感兴趣。它也必须通过Script Task的ReadOnlyVariables传入。我最后修改了包,因为还有其他问题。
VB.NET
If CBool(Dts.Variables("System::InteractiveMode").Value) = True Then
....
End if
C#
if ((bool)Dts.Variables["System::InteractiveMode"].Value == true)
....
}