An operational bundle which consists of multiple ACID transactions, usually on multiple servers, which must all commit or roll back.
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-transactionsI'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 msdtcI am trying to get a WCF webservice running which will participate in distributed transactions. I keep getting the following …
wcf distributed-transactionsI believe most of people know what 2PC (two-phase commit protocol) is and how to use it in Java or …
database distributed-transactionsI'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-kafkaI have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) …
c# transactions transactionscope distributed-transactionsThe 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 xaI 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-transactionsWhile 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-transactionsWe 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