我正在尝试使用TOAD应用程序从两个不同的SQL Server获取数据 这是我的查询
SELECT
CASE WHEN (select count(*) from [BR150\sp_BRVM130].[CCA].dbo.EXTERNAL_MEMBER_DATA)=(select count(*) from [BR150\sp_BRVM124].[HSR].dbo.External_Member_Data)
THEN 'Row Count For Both Table is equal'
ELSE 'Row Count For Both Table differs'
END AS RowCountResult
此查询在sql server中完美运行。但是当我尝试在TOAD中执行此查询时,我得到以下错误
Could not find server 'BR150\sp_BRVM124' in sys.servers. Verify that the correct server name was specified. If necessary, execute the stored procedure sp_addlinkedserver to add the server to sys.servers.
我通过互联网进行研究,发现在TOAD中无法实现跨服务器连接。这是真的吗?