MS SQL Server 如何找到链接服务器IP地址和本地实例

MS SQL Server How to find Linked Server IP address and local instance

我继承了一个链接服务器,想在本地访问该服务器和 db\instance。我怀疑链接服务器不是必需的,可能会有更好的解决方案。

问题是链接服务器上没有文档,设置它的人早已离开。

我的问题是:

如何从链接服务器中找出 IP 地址、机器名称、SQL 数据库和实例名称?

在management studio中右键单击链接服务器,生成一个CREATE TO脚本并检查连接细节。

You can either use

EXEC sp_linkedservers

或者

SELECT * FROM sys.servers 

To find more info on your current linked servers.

The error referencing MSDASQL suggests an issue with an ODBC (system) data source created on the server, so if you go to Control Panel->Administrative Tools-> Data Sources (ODBC) you might start finding your answers there.