Linked Servers - Distributed Transaction
Hello,
I have setup two servers as linked servers. And when I execute the following query from server1, It is hanging and I am not getting any response.
begin distributed transaction
select * from server2.pubs.dbo.authors
rollback transaction
But, if I execute the same query with out a transaction (like below), it is displaying the results immediately.
select * from server2.pubs.dbo.authors
Any clues..why???
Thanks for your help.
Ram
|