Reputation: 137
I am trying to fetch data from two SQL Servers through linked servers. One is SQL 2014 Express and another is SQL 2008 Standard. But now the 2008 Standard edition is faster than 2014 Express edition.
They base server (from where I am trying to get data) is SQL 2008 R2 Standard.
Is there any reason for that? How to tune that?
Please reply.
Upvotes: 0
Views: 277
Reputation: 10680
It's impossible to directly answer your questions, as there can be many reasons for this. Off the top of my head:
The best advice I can give for now, is that you should try to examine the remote servers closely. Perhaps run your queries locally on each server, to find out how they perform directly on that server (to eliminate network concerns). Then, maybe try to import the data through SSIS, instead of using Linked servers (to eliminate some linked server configuration concerns). Take baby steps, and little by little, the problem should become more apparent.
Upvotes: 1