Forum Discussion
TIENHC
May 15, 2025Copper Contributor
Linked Server Selection Query Fails with "MS DTC has stopped this transaction"
Hi everyone, I’m currently setting up a Linked Server from our head office (server A) SQL Server to a subsidiary unit (Server B) SQL Server. The Linked Server connection tests successfully, and I c...
TIENHC
May 16, 2025Copper Contributor
execute me, could you guys give me solution for that error?
- Neb12May 30, 2025Copper Contributor
You might need to turn on AdHoc distributed queries:
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'Ad Hoc Distributed Queries', 1;
RECONFIGURE;