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 |
|
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.sysdtspackagesServer 'servername' is not configured for DATA ACCESSAny 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 accesssp_serveroption 'servername','data access','TRUE'HTHJasper Smith |
 |
|
|
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? |
 |
|
|
|
|
|