I am trying to create a linked server connection. I have tried the following things:exec master..sp_addlinkedserver 'AUDITCONN', ' ', 'MSDASQL', NULL, NULL,'Driver={SQL Server};Database=AUDITDB;Server=AUDITSRV;UID=auditor;PWD=tattletale;'go
and...sp_addlinkedserver N'AUDITCONN', ' ', N'SQLOLEDB', N'AUDITSRV'gosp_addlinkedsrvlogin N'AUDITCONN', false, NULL, N'auditor', N'tattletale'go
However, when I attempt this:select top 1 * from [AUDITCONN].AUDITDB.dbo.sql_servers
With the first linked server creation method, I get:Server: Msg 7399, Level 16, State 1, Line 1OLE DB provider 'MSDASQL' reported an error. [OLE/DB provider returned message: [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen (Connect()).][OLE/DB provider returned message: [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]SQL Server does not exist or access denied.]OLE DB error trace [OLE/DB Provider 'MSDASQL' IDBInitialize::Initialize returned 0x80004005: ].With the second method, I get: Server: Msg 17, Level 16, State 1, Line 1SQL Server does not exist or access denied.I read http://support.microsoft.com/kb/314530, but that seems more for timeout issues. (I tried adjusting the timeout anyway, with no luck.) I know the password is correct and that the login exists on the linked server. I also tried creating the logon on the other server as well, but that had no effect either. This does work on other servers. The servers it works on seem to be running standard edition, and the servers it is failing on are running personal edition. Would that have anything to do with it?Any advice or help is appreciated.Thanks.-D.____________________________________________________________________________________"Believe in those who are seeking the truth. Doubt those who say they have found it." -Andre Gide