Joining Tables from multiple SQL Server databases located on separate severs

前端 未结 4 1207
南笙
南笙 2021-01-19 03:52

What is the recommended way of joining SQL Server database tables located on databases which are on different servers?

All databases will be on the same network.

4条回答
  •  再見小時候
    2021-01-19 04:39

    You can set the servers up as linked servers:

    http://www.sqlservercentral.com/articles/Video/66413/

    You will then be able to run queries that reference the different databases.

提交回复
热议问题