Joining Tables from multiple SQL Server databases located on separate severs -
What is the recommended way to join the SQL Server database tables located on different servers on the server?
All the databases will be on the same network. You can set the server as a linked server:
Then you will be able to run the query that references different databases.
Comments
Post a Comment