How to join two tables from different connections / instances in SQL Server?
Something like this :
select *
from [connection1].[database].[table] c1
join [connection2].[database].[table] c2 on c1.id = c2.id
How to join two tables from different connections / instances in SQL Server?
Something like this :
select *
from [connection1].[database].[table] c1
join [connection2].[database].[table] c2 on c1.id = c2.id