Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem wih sp_addlinkedserver

Status
Not open for further replies.

dkaplan

Programmer
Jan 29, 2001
98
0
0
US
I am trying to read tables on an 2008 SQL server from a 2012 SQL server.

I have run sp_addlinkedserver on each server, referencing the other server.

The link appears to have been established successfully.

However, when I try to query a table on the linked server with
select * from NameOfLink.MyDB.dbo.TableName

I get the message:

Msg -2146893007, Level 16, State 1, Line 0
SSL Provider: The client and server cannot communicate, because they do not possess a common algorithm.

Suggestions?

Note: I'm not sure if this is relevant, but the 2008 server is using IIS.





 
check to see if on one of the servers TLS 1.0 and 1.1 is disabled - most likely this will be the case and one of the servers only has tls 1.2 enabled and the other does not.
or a similar combination

Note that this is at OS level so your network team will need to investigate and deal with the issue.



Regards

Frederico Fonseca
SysSoft Integrated Ltd

FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top