EXEC master.dbo.xp_sqlagent_proxy_account N'SET',
             N'mydomain', -- agent_domain_name
             N'ntaccount', -- agent_username
             N'123password'
I get a message saying
"Error executing extended stored procedure: Specified user can not login"
If I use
EXEC master.dbo.xp_sqlagent_proxy_account 'GET'
I get nothing.
I tried to do this from Enterprise MAnager also but same error.
-Sue
The Ntaccount I am using to do the task is Admin as well as SA and the
account I am using for Proxy has the same priveleges.
"Sue Hoegemeier" <Su...@nomail.please> wrote in message
news:elrulv8gi0qk69f3q...@4ax.com...
-Sue
On Wed, 10 Sep 2003 15:47:24 -0400, "ilovesql"
Try again to set the proxy account.
if that does not work, use the following alternative way to execute the XP
EXEC master.dbo.xp_sqlagent_proxy_account N'SET',
             N'mydomain', -- agent_domain_name
             N'ntaccount', -- agent_username
             N'123password'
             N'machine name', -- name of the machine or note your are
running on
             N'Administrator', -- local machine administrator account
             N'123AdminPassword'
Ge...@SQLDev.Net
Please reply only to the newsgroups.
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
Copyright © SQLDev.Net 1991-2003 All rights reserved.
"ilovesql" <ilov...@hotmail.com> wrote in message
news:erL3MS8d...@TK2MSFTNGP09.phx.gbl...