Top "Distributed-transactions" questions

An operational bundle which consists of multiple ACID transactions, usually on multiple servers, which must all commit or roll back.

Unable to begin a distributed transaction

I'm trying to run SQL against a linked server, but I get the errors below : BEGIN DISTRIBUTED TRANSACTION SELECT TOP 1 * …

sql-server sql-server-2005 msdtc distributed-transactions
The operation could not be performed because OLE DB provider "SQLNCLI11" for linked server was unable to begin a distributed transaction

I'm trying to run a distributed transaction from my machine (SQL Server 2012) to a client server (SQL Server 2008). I'm trying …

sql-server distributed-transactions msdtc
Configuration binding extension could not be found

I am trying to get a WCF webservice running which will participate in distributed transactions. I keep getting the following …

wcf distributed-transactions
Two phase commit

I believe most of people know what 2PC (two-phase commit protocol) is and how to use it in Java or …

database distributed-transactions
Kafka - How to commit offset after every message using High-Level consumer?

I'm using Kafka's high-level consumer. Because I'm using Kafka as a 'queue of transactions' for my application, I need to …

message-queue apache-zookeeper distributed-transactions apache-kafka
TransactionScope: Avoiding Distributed Transactions

I have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) …

c# transactions transactionscope distributed-transactions
What is a "distributed transaction"?

The Wikipedia article for Distributed transaction isn't very helpful. Can you give a high-level description with more details of what …

database commit distributed-transactions xa
Transaction Management in Spring JMS listener

I have a spring JMS listener which is listening to queue . Once the message arrives at the input queue , it …

java spring transactions spring-jms distributed-transactions
Spring Global transaction vs Local transaction

While reading through Spring transaction documentation I see that it supports both Global transactions and Local transactions. In simple terms …

java spring transactions spring-transactions distributed-transactions
Deadlocks causing 'Server failed to resume the transaction' with NHibernate and distributed transactions

We are having an issue when using NHibernate with distributed transactions. Consider the following snippet: // // There is already an ambient …

sql-server nhibernate connection-pooling distributed-transactions