Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

How do distributed transactions work (eg. MSDTC)?

I understand, in a fuzzy sort of way, how regular ACID transactions work. You perform some work on a database in such a way that the work is not confirmed until some kind of commit flag is set. The ...
2
votes
2answers
4k views

MSDTC - Communication with the underlying transaction manager has failed (Firewall open, MSDTC network access on)

I'm having problems with my ASP.NET web forms system. It worked on our test server but now we are putting it live one of the servers is within a DMZ and the SQL server is outside of that (on our ...
2
votes
5answers
1k views

Transactionscope not working when two remote sql connections

I am using Two SQL Server connection object in my C# console application project. I need to do this in single transaction So I used Transactionscope (Distributed Transaction) I am not able to use the ...
0
votes
1answer
87 views

Transaction scope wcf and avoid unwanted Escalation to Distributed Transactions

i have problem with escalation distributed transactions in wcf application. My code looks something like this : LogRepository public void AddLog(ImportLogDbo log) { using (DbManager ...