Joining Tables from multiple SQL Server databases located on separate severs

前端 未结 4 1209
南笙
南笙 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:43

    You can use linked servers, though there can be some funky things with query execution in some cases. It depends on the queries you're running.

    You can alternately set up replication from the other databases to a single server, and run all queries on that one server.

提交回复
热议问题