What is a Linked Server in SQL Server ?

A linked server configuration enables SQL Server to execute commands against OLE DB data sources on remote servers. With a linked server, you can create very clean, easy-to-follow SQL statements that allow remote data to be retrieved, joined and combined with local data.

The ability to issue distributed queries and perform commands with transactions on heterogeneous sources are one of the keys to using Linked Servers. Stored Procedures 'sp_addlinkedserver', 'sp_addlinkedsrvlogin' will be used to add a new Linked Server and 'sp_linkedservers' is used to list all the Linked Servers defined on the Server.



You May Interest

Disabling All Constants in a Table in MS SQL

Making a Backup of MS SQL Database With Query

What is the Difference Between Update Lock and Exclusive Lock in ...

Showing Server Active Server Name in MS SQL

How to Optimize Stored Procedure in SQL Server ?