Hi,
try this...After create your linked server use sp_addlinkedsrvlogin to configure security for aways use a remote login.
sp_addlinkedsrvlogin
@rmtsrvname = N'LINKED SERVER NAME',
@locallogin = NULL ,
@useself = N'False',
@rmtuser = N'REMOTE LOGIN NAME',
@rmtpassword = N'PASSWORD'
Main Topics
Browse All Topics





by: reb73Posted on 2009-04-01 at 16:44:30ID: 24045081
I don't think you can delegate/extend your windows login related credentials to other users the way you have described.
Doing so would defeat the reason for windows credentials being extended to you as this will constitute a security loophole or vulnerability..