Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
danodan
Starting Member
1 Post |
Posted - 2009-08-10 : 09:50:30
|
I want to run SSIS package from another server from command prompt:dtexec /DTS "\MSDB\Package_transfer" /SERVER sqlserver /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING VI got following answer:Microsoft (R) SQL Server Execute Package UtilityVersion 9.00.3042.00 for 64-bitCopyright (C) Microsoft Corp 1984-2005. All rights reserved.Started: 2:45:13 PMCould not load package "\MSDB\Package_transfer" because of error 0xC00160AA.Description: Connect to SSIS Service on machine "sqlserver" failed: Access is denied..Source:Started: 2:45:13 PMFinished: 2:45:13 PMElapsed: 0.313 secondsHave anybody idea, where is the problem? |
|
YellowBug
Aged Yak Warrior
616 Posts |
Posted - 2009-08-12 : 13:07:49
|
The error says "Access is denied."Permission the user (or agent account) on the other server.Or, in the dtexec call, include the User and Password of a valid user on the other server: dtexec /U ... |
 |
|
|
|
|