Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
aliobaidi
Starting Member
2 Posts |
Posted - 2010-08-23 : 23:55:04
|
I have a query that looks like thisselect * from S1.table1union all select * from S2.table2S1 is remote server 1, S2 is remote server 2I am running the query from my local server and have a link with both S1 and S2If I run the first query alone then it will get executed in 23 sfor S2 it will take 34 sec. If I run them with the union all, it takes 51 sec. I was expecting it to take 34 sec but it seems that the queries are running serially rather than parallel. |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
aliobaidi
Starting Member
2 Posts |
Posted - 2010-08-24 : 17:29:10
|
Tara,I am interested in getting the output from the union through SQL query with minimal or No programming |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|