I am calling an SSIS package remotely using a stored procedure and a call to xp_cmdshell:
declare @cmd varchar(5000)
set @cmd = '"C:Program Files (x86)Microsoft SQL Server100DTSBinndtexec.exe" /Rep E /Sql Package /SET Package.Variables[User::ImportFileName].Value;c:foo.xlsx'
print @cmd
exec xp_cmdshell @cmd
This works fine, however I can not guarantee the variable value (c:foo.xslx) is not going to contain spaces so I would like to escape that with quotes like below:
set @cmd = '"C:Program Files (x86)Microsoft SQL Server100DTSBinndtexec.exe" /Rep E /Sql Package /SET Package.Variables[User::ImportFileName].Value;"c:foo.xlsx"'
But by doing this I get the error
'C:Program' is not recognized as an internal or external command, operable program or batch file.
Both of the above commands work fine if executed within cmd.exe so I am guessing that SQL Server is interpreting my double quotes and changing something, but I can't figure out what.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…