Hello All,
Suppose you have two linked servers called Local and Remote respectively.
Is there a syntax that compresses (and uncompresses) the data required to be sent from the Local to Remote (or vice versa).
For example, if I am updating my Local database with data from my Remote database, I would do the following:
INSERT INTO [Local Server].[Local DB Name].dbo.[Table]
SELECT *
FROM [Remote Server].[Remote DB Name].dbo.[Table]
Is there a syntax I can apply that compresses the data being sent from Remote to Local hence reduce the bandwidth costs and execution time involved?