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.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 linked server error?

Author  Topic 

leedoolan
Starting Member

12 Posts

Posted - 2002-07-08 : 06:03:13
When I use the following sql statement to access a linked server I get the following message:

select *
from [servername].msdb.dbo.sysdtspackages

Server 'servername' is not configured for DATA ACCESS

Any help would be most appreciated.

jasper_smith
SQL Server MVP & SQLTeam MVY

846 Posts

Posted - 2002-07-08 : 07:33:01
use sp_serveroption to allow data access

sp_serveroption 'servername','data access','TRUE'



HTH
Jasper Smith
Go to Top of Page

leedoolan
Starting Member

12 Posts

Posted - 2002-07-08 : 08:38:39
Thank you very much. I have done this but now I get the following message:

Login failed for user '\'

Any ideas?

Go to Top of Page
   

- Advertisement -