Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Command line 将参数传递给SSI执行流程任务_Command Line_Ssis_Command Prompt - Fatal编程技术网

Command line 将参数传递给SSI执行流程任务

Command line 将参数传递给SSI执行流程任务,command-line,ssis,command-prompt,Command Line,Ssis,Command Prompt,我正在使用SSIS 2012 我想用两个可变参数执行一个exe文件 可执行文件:C:\temp\MyExe.exe 参数1:ABCD------------类型为字符串 参数2:1234------------类型为字符串 在dos中看起来是这样的 c:\temp>MyExe.exe“ABCD”“1234” 这很好 现在,当我想在SSIS中使用Execute Process任务时,我不知道在这里放置什么 我的错误,我在MyExe.exe后有一个该死的空格尝试将工作目录作为C:\temp和可执行文

我正在使用SSIS 2012

我想用两个可变参数执行一个exe文件

可执行文件:C:\temp\MyExe.exe

参数1:ABCD------------类型为字符串

参数2:1234------------类型为字符串

在dos中看起来是这样的

c:\temp>MyExe.exe“ABCD”“1234”

这很好

现在,当我想在SSIS中使用Execute Process任务时,我不知道在这里放置什么


我的错误,我在MyExe.exe后有一个该死的空格

尝试将
工作目录
作为
C:\temp
可执行文件
作为
MyExe.exe
。同时在
StandardErrorVariable
中放入一个变量以捕获错误。