Hi,
When attempting to run this command from Mgmt Studio:
exec master..xp_cmdshell "DTExec /FILE D:\CashRec mySSISpkg.dtsx"
I get this error:
Microsoft (R) SQL Server Execute Package Utility
Version 9.00.1399.06 for 32-bit
Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
NULL
Option "-" is not valid.
NULL
I think the problem is that you need to call DTExec this way:
DTExec /FILE "D:\CashRec mySSISpkg.dtsx" (path in quotes)
but this doesn't work either:
exec master..xp_cmdshell "DTExec /FILE "D:\mySSISpkg.dtsx""
Help!
Thanks
When attempting to run this command from Mgmt Studio:
exec master..xp_cmdshell "DTExec /FILE D:\CashRec mySSISpkg.dtsx"
I get this error:
Microsoft (R) SQL Server Execute Package Utility
Version 9.00.1399.06 for 32-bit
Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
NULL
Option "-" is not valid.
NULL
I think the problem is that you need to call DTExec this way:
DTExec /FILE "D:\CashRec mySSISpkg.dtsx" (path in quotes)
but this doesn't work either:
exec master..xp_cmdshell "DTExec /FILE "D:\mySSISpkg.dtsx""
Help!
Thanks