Tagged Questions
MSDTC is an acronym for Microsoft Distributed Transaction Coordinator.
62
votes
6answers
9k views
TransactionScope automatically escalating to MSDTC on some machines?
In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on our end-user's ...
11
votes
5answers
767 views
Any real-world, enterprise-grade experience with Transactional NTFS (TxF)?
Background:
I am aware of this SO question about Transactional NTFS (TxF) and this article describing how to use it, but I am looking for real-world experience with a reasonably high-volume ...
11
votes
3answers
3k views
Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction
Just curious if anyone else has got this particular error and know how to solve it?
The scenario is as follow...
We have an ASP.NET web application using Enterprise Library running on Windows Server ...
10
votes
4answers
20k views
How do i enable MSTDC on sqlserver?
Is that even a valid question? I have a .Net windows app that is using MSTDC and it throwing an exception:
System.Transactions.TransactionManagerCommunicationException:
Network access for ...
9
votes
1answer
765 views
Is Active Directory transaction-aware?
Simple question but I can't find the answer anywhere: is Active Directory transaction-aware?
In other words, will the following change be rolled back (since I didn't call scope.Complete()):
using ...
8
votes
2answers
5k views
MSDTC - how many ports are needed
I have a considerably large application that uses MSDTC. How many ports should I open? Is there any way to determine it?
EDIT: I know what ports I need to open, I don't know how many I need.
7
votes
1answer
2k views
NServiceBus and NHibernate - Message Handler and Transactions
From my understanding NServiceBus executes the Handle method of an IMessageHandler within a transaction, if an exception propagates out of this method, then NServiceBus will ensure the message is put ...
6
votes
7answers
1k views
Multiple SQL Transactional Commands Across Different Database Connections
I am using the .NET 2.0/3.5 framework for my application. I need to run several SQL commands across multiple connections and each connection is on a different server (Oracle, SQL Server). I need to ...
6
votes
2answers
1k views
Trace why a transaction is escalated to DTC
Is there any way to determine precisely why a System.Transaction TrasactionScope is being escalated to the DTC? We are hitting a bump with one of our components that seem to escalate the transaction ...
5
votes
2answers
323 views
Dtcping test passes but still have a Communication with the underlying transaction manager has failed
DTCPing tool says everything should be fine. The actual exception is:
System.Transactions.TransactionManagerCommunicationException:
Communication with the underlying transaction manager has ...
5
votes
3answers
2k views
Common Gotchas when using TransactionScope and MS DTC
I am just starting to work with using TransactionScope, I find that there are always unexpected things I run into that take forever to debug.
I figure that having a consolidated list of these would ...
5
votes
3answers
1k views
How to determine why a distributed transaction is timing out
I am using LINQ to SQL and a third party SDK that supports distributed transactions. When I realize that a pending update will be updating both SQL records and records in the third party SDK, I am ...
4
votes
2answers
225 views
What changed in .net 4.0 to scenarios when TransactionScope escalates to DTC?
Can someone detail the changes made in .net 4 to the circumstances under which TransactionScope will (and will not) escalate to DTC? Or is everything the same as 3.5?
4
votes
1answer
828 views
Reliable test for MSDTC promoting transactions to distributed?
How can I reliably check that MSDTC has promoted a transaction to a distributed transaction?
This is when using TransactionScope in .net.
Currently a co-worker is testing this by shutting down the ...
4
votes
2answers
342 views
TransactionScope works in some places and not in others
Using ASP.NET 3.5, Linq to SQL, SQL Server 2005 on Windows Server 2003. Running VS 2008 on XP SP3 locally.
We need to be able to wrap inserts, updates, and deletes in a transaction. When we first ...
4
votes
2answers
445 views
Determine whether the transaction is DTC transaction or not when debugging
In .Net, is there any way to determine whether the ambient transaction is DTC transaction or not when debugging. I investigated SqlConnection class members but I found nothing.
thanks.
4
votes
1answer
626 views
Security risk of enabling MSDTC
MSDTC is disabled by default (windows 2003 - onwards) and I want to have it enabled for an application I'm developing that requires distributed transactions from .Net C#.
I don't believe there are ...
4
votes
4answers
3k views
Where do I get tracefmt.exe? And how do I read my MSDTC traces?
I followed this spectacularly worthless piece of drivel from MS in order to turn on MSDTC trace. As it fails to follow through on a very reasonable and obvious expectation of the reader, specifically ...
3
votes
0answers
135 views
Oracle ESB, WS-AT and WCF
Does any body tried to enable WS-AT usage between Oracle ESB and WCF web service?
At the moment I enabled WS-AT transactions on the MS DTC side, also I enabled usage of SSL for web services in ...
3
votes
2answers
185 views
Transaction and ASP.NET Membership API
Hope someone of you have been there. I need to do some database stuff which involve multiple tables. I am using SubSonic 3 SimpleRepository to update/access records. Now in between calls to update ...
3
votes
4answers
460 views
MSMQ messages bound for clustered MSMQ instance get stuck in outgoing queues
We have clustered MSMQ for a set of NServiceBus services, and everything runs great until it doesn't. Outgoing queues on one server start filling up, and pretty soon the whole system is hung.
More ...
3
votes
1answer
1k views
How to run two Entity Framework Contexts inside TransactionScope without MSDTC?
This problem is not readily reproducible in a simple example here but was wondering if anyone has any experience and tips, here is the issue:
using Entity Framework
have many points in application ...
3
votes
5answers
3k views
TransactionScope Error against Sql Server 2000 - The partner transaction manager has disabled its support for remote/network transactions
I am trying to set up a simple transaction for my Linq-to-Sql actions against my Sql 2000 database. Using TransactionScope it looks like this:
using (TransactionScope transaction = new ...
3
votes
6answers
1k views
Can I create a Database Deadlock test in Nunit?
In this asp.net I'm cleaning up it's possible for deadlocks to occur. I want to make sure that the code deals with them properly, so I'm trying to write NUnit tests which trigger a deadlock.....
The ...
2
votes
1answer
145 views
How to get detailed error from CLR Stored Procedure called in DTC transaction from SSIS Package
Whenever an exception is thrown in CLR stored procedure called from a SSIS package, within a DTC transaction , the error returned to client (SSIS package) relates to DTC rather than the underlying ...
2
votes
1answer
48 views
Is it possible to have two applications that use the same databases in a distributed transaction without having to implement a resource manager?
We have a .Net application that initiates a transaction using NHibernate and modify data in the database X. Amid this transaction we issue calls to a WebService (.Net too), that also modifies database ...
2
votes
1answer
265 views
32bit DLLs using MSDTC/oracle XA on 64 bit Win2k3
I have a COM+ application (mostly vb6 based), that I need running on a 64-bit system. It's supposed to communicate with an oracle database (10g, 32bit). Everything works fine when I disable XA, but ...
2
votes
1answer
729 views
Exception using MSDTC Transactions on SQL 2008 / Server 2008 R2 x64 HRESULT: 0x8004D025
G'day
I'm currently upgrading an app to SQL 2008 / Server 2008 R2 x64 and I'm seeing some strange behaviour that I have not seen on SQL 2005 / Server 2003. Randomly I get an exception from MSDTC: ...
2
votes
1answer
165 views
MSDTC Distributed Transaction Coordinator Enabling
I've a web server and a separate SQL server. I'm trying to use transaction scope to ensure that SQL queries are completed with my linq queries.
I wrap everything with this
using (TransactionScope ...
2
votes
1answer
391 views
changing existing COM+ applications identity via vbs script
How to changing existing COM+ applications identity via vbs script. like Authentication level = none and identity to this user via vb scripts. found many posting on add/delete com+ applications but ...
2
votes
2answers
348 views
Suppressing TransactionScope enlistment of a readonly EF context?
I have a scenario where I need to open multiple datacontexts which point to different databases. I am only writing to one of the databases though and reading from the others ... so technically the ...
2
votes
4answers
260 views
Simple Transactions
I have 2 linq 2 SQL statements I'd like to be in a transaction (the SQL server is remote, outside firewalls etc) all other communication works but when I wrap these 2 statements in a ...
2
votes
1answer
759 views
Do I need MSDTC for NServiceBus / NHibernate?
I am writing an NServiceBus solution and trying to use DBSubcriptionStorage. This uses NHibernate for data access and I get the following exception:
The partner transaction manager has disabled ...
2
votes
1answer
259 views
SQL Server and TransactionScope (with MSDTC): Sporadically can't get connection
I've written some tests for .net code that invokes calls to my SQL Server. It appears that using System.Transactions is an excellent choice for rolling back any modifications to the database that ...
2
votes
1answer
87 views
How Can I Find What's Causing My Transaction to Get Promoted?
I have web site which serves web services (a mixture of .asmx and WCF) which is mostly using LINQ to SQL and System.Transactions. Occaisionally we see the transaction get promoted to a distributed ...
2
votes
1answer
2k views
How do distributed transactions behave with multiple connections to the same DB in a threaded environment?
I’m trying to determine the behaviour of multiple database connection in a distributed transaction.
I’ve got a long running process which spawns a series of threads and each thread is then ...
2
votes
0answers
315 views
How to Configuring Mutual Authentication on MSDTC?
How authentication in general (Mutual Authentication as a special case) works in MSDTC and how to configure Mutual Authentication on MSDTC??
I've a custom application (archival solution), a windows ...
2
votes
2answers
387 views
Where MSDTC needs to be installed in Distributed transaction case
I need to maintain distributed transactions in my application
Assume Service1 is installed on Server1
[ServiceContract]
IService1
{
[OperationContract]
Operation1();
}
Service2 is ...
2
votes
3answers
889 views
What causes this MS DTC error to occur sporadically in .NET?
I receive this error sporadically throughout the day. According to the stack, it's thrown during enlistment. If it were getting this error every time I'd be able to troubleshoot and fix (typically a ...
2
votes
4answers
1k views
Understanding MSDTC in Windows
To use transaction construct(as follows) in Subsonic, MSDTC needs to be running on Windows machine. Right?
using (TransactionScope ts = new TransactionScope())
{
using ...
2
votes
3answers
1k views
confusion about transactions and msdtc
I have some basic confusion about how transactions and msdtc work together.
I have a basic server/client winforms app. The app uses transactionscope to encapsulate several sql commands that are ...
2
votes
5answers
897 views
MSDTC failing on first transaction
I have an application that retrieves data and stores into a database once per day. Until recently this application has resided on the same machine as the SQL server but due to some hardware issues ...
2
votes
2answers
789 views
Why does VS Database Unit Tests using TransactionScope and MSDTC fail?
We have some unit tests running against a SQL server 2000 database using the DatabaseTestFixture class which uses a TransactionScope that is not committed and therefore all changes are rolled back. ...
2
votes
1answer
1k views
Multiple Connections With Same Connection String Under A Single Transaction, Elevated Transaction?
When using ado.net, and creating multiple connections to a MS SQL Server database within a single transaction (using System.Transactions.TransactionScope), does System.Transactions elevate the ...
2
votes
1answer
901 views
MSDTC and Oracle transaction locks after abort has been called?
I’m running into problems using MSDTC and Oracle. It’s a .net application and I’m using the TransactionScope class to control the transactions.
The problem is that, sometimes, if the transaction is ...
2
votes
1answer
3k views
What's the difference between DTCPing and DTCTester?
I've used DTCTester before to diagnose MSDTC problems. However, I just noticed DTCPing seems to do about the same thing. What's the difference between these two?
From what I can tell so far, DTCPing ...
2
votes
1answer
739 views
How to prevent an Insert query from enrolling into a Distributed Transaction?
I have a SQL Insert query inside a stored proc, for inserting rows into a linked server table.
Since the stored proc is getting called within a parent transaction, this Insert statement tries to use ...
1
vote
4answers
53 views
INNER JOIN on Linked Server Table much slower than Sub-Query
I came across this very odd situation, and i thought i would throw it up to the crowd to find out the WHY.
I have a query that was joining a table on a linked server:
select a.*, b.phone
from ...
1
vote
1answer
73 views
Calling Entity Framework from a NServiceBus method causes an error
I have a solution that has a self hosted WCF Service. That service connects to EF and can read and write just fine.
In the same solution I also host an NServiceBus endpoint. It gets event from a ...
1
vote
2answers
715 views
Unable to begin a distributed transaction
i'm trying to run SQL against a linked server, but i get the errors.
BEGIN DISTRIBUTED TRANSACTION
SELECT TOP 1 * FROM Sessions
OLE DB provider "SQLNCLI" for linked server "CMSLIVE" returned ...