我正在使用存储过程和对xp_cmdshell的调用来远程调用SSIS包:
declare @cmd varchar(5000) set @cmd = '"C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\dtexec.exe" /Rep E /Sql Package /SET \Package.Variables[User::ImportFileName].Value;c:\foo.xlsx' print @cmd exec xp_cmdshell @cmd
这可以正常工作,但是我不能保证变量值(c:\ foo.xslx)不会包含空格,因此我想使用以下引号将其转义:
set @cmd = '"C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\dtexec.exe" /Rep E /Sql Package /SET \Package.Variables[User::ImportFileName].Value;"c:\foo.xlsx"'
但是通过这样做我得到了错误
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
如果在cmd.exe中执行,上述两个命令都可以正常工作,因此我猜测SQL Server正在解释我的双引号并更改了某些内容,但我不知道是什么。
研究完此内容后,您似乎必须使用带有xp_cmdshell的DOS 8.3表示法,例如c:\ progra〜1 …,并且参数上只能有一组引号。
要解决此限制,请使用较旧的DOS表示法,或者将您的代码放在可以正常运行的批处理文件中。
来源:http://social.msdn.microsoft.com/forums/en- US/sqlintegrationservices/thread/4e7024bb-9362-49ca-99d7-1b74f7178a65