Hi There...I am having trouble creating getting my SQL SERVER linked server to work. I get this error.OLE DB provider "SQLNCLI" for linked server "servername" returned message "Unable to complete login process due to delay in opening server connection".Msg 7303, Level 16, State 1, Procedure sp_testlinkedserver, Line 1Cannot initialize the data source object of OLE DB provider "SQLNCLI" for linked server "servername".
I have done a ton of searching around and not found a solution for my problem. Does anyone know what this error actually is saying? I have my local user mapped to the correct account. I have set the default to the correct account as well..Another post I found suggested runnign this query and posting the results, so thats what I am doing here...QUERY:select S.server_id, S.name, S.provider,S.data_source,S.provider_string, L.uses_self_credentialfrom sys.servers as S, sys.linked_logins as Lwhere S.server_id=L.server_id and S.name=N'servername'
RESULTSET:serverid name provider datasource provider_string uses_self_credential1 servername SQLNCLI servername NULL 01 servername SQLNCLI servername NULL 0Any help would be greatly appreciated...I ave spent all day trying to figure this out and I am at my wits end.Thanks in advance!Greg