I'm a newbie at SSIS. I have a package that I've been able to install on my SSIS server which is running on the same machine as my SQL server. The SQL code I am running is below:
The code 'almost' runs.... I get the following output results:
Can anyone give me a tip on what I'm doing wrong?
Thanks,
Paul
Code:
DECLARE @cmd VARCHAR (1000)
SELECT @cmd = 'dtexec /SQL "\Load Columbia River" /SERVER MCSQL2008 /USER SSIS /PASSWORD vdf1sgr8'
EXEC MASTER..xp_cmdshell @cmd
The code 'almost' runs.... I get the following output results:
Code:
Microsoft (R) SQL Server Execute Package Utility
Version 10.0.2531.0 for 64-bit
Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
NULL
Started: 6:29:10 PM
Could not load package "\Load Columbia River" because of error 0xC001000A.
Description: The specified package could not be loaded from the SQL Server database.
Source:
Started: 6:29:10 PM
Finished: 6:29:11 PM
Elapsed: 0.141 seconds
NULL
Can anyone give me a tip on what I'm doing wrong?
Thanks,
Paul