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.
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.