MSDTC is an acronym for Microsoft Distributed Transaction Coordinator.
0
votes
0answers
32 views
Using two contexts in one Transaction and error with DTC
In one transation I use two different contexts:
using (TransactionScope scope = new TransactionScope())
{
using (Entities1 context = new Entities1())
{
....
}
using (Entities2 ...
1
vote
1answer
51 views
avoid “Cannot use SAVE TRANSACTION within a distributed transaction” error between SQL 2005 and 2008
in our production environment we have a stored procedure (in sql 2005 server) that import data into a local table from a remote stored procedure (stored in a remote sql 2008).
The code is like this:
...
0
votes
0answers
24 views
Update using TransactionScope using 2 sql connections across Domains
Please help me in the below mentioned scenario->
I have two servers ,Server A in Domain A and Server B in Domain B.
If I want to update a table in server A and close the connection for the same
...
0
votes
0answers
12 views
Distributed Transcations, DTCPING, How to set NetBIOS
I'm the Microsoft Distributed Transaction Coordinator to write to two different databases on separate servers that are not on the same network. When I attempt to execute the code inside a C# ...
2
votes
0answers
105 views
TransactionScope - The underlying provider failed on EnlistTransaction. MSDTC being aborted
Our team have got a problem that manifests as:
The underlying provider failed on EnlistTransaction; Cannot access a
disposed object.Object name: 'Transaction'.
which seemed to appear as soon ...
0
votes
2answers
58 views
maxTimeout value from Machine.Config is not picked up by C# winform app
I have been working on a winform app with Oracle 10g database which is using TransactionScope and wanted to modify the maxTimeOut value specified in machine.config file, my machine.config file is in ...
2
votes
2answers
75 views
MSDTC from a standalone machine to a domain machine
The issue is that we have a website on a standalone webserver (Windows 2003 SP2 - Machine name is TESTAPP which can be sen in the log below) which uses TransactionScope.
The SQL Server 2008 R2 ...
1
vote
1answer
122 views
MSDTC (Distributed Transaction Coordinator) Stops working. Error code -1073737669
I cannot start Distributed Transaction Coordinator service.
It stoped to work few days ago.
When I am trying to start service:
Registry properties:
RPC (For a test values was changed here to ...
0
votes
4answers
85 views
Why is MSDTC involved?
As far as I know, The MSDTC only gets involved when:
You're querying a view/table inside a transaction that is linked to
another server.
You're using two SqlConnections (or whatever it is
...
0
votes
0answers
153 views
MSDTC scripted Install On Windows Server 2012
We are trying to Install MSDTC using powershell on a 2 Node Failover Cluster on a WS2012 std environment. Everything goes right except the grouptype of the MSDTC resource appears unknown (9999). ...
0
votes
0answers
52 views
EntityFramework escalating to MSDTC…due to multiple contexts?
I am having issues where one of my TransactionScope wrapped db updates are being escalated to MSDTC (I can tell because if I turn off the DTC service, I get an error that states as such, but it works ...
2
votes
2answers
123 views
Service Bus 1.0 for Windows Server Transaction/Error Handling
I'm sure I'm not the first to say it, but there's a severe lack of documentation on the finer points of Service Bus 1.0 for Windows Server out there... I'm hoping some of the MS insiders can help ...
3
votes
1answer
104 views
MSDTC exception
I got the following exception in my application once,
Unable to get the address of the distributed transaction coordinator for the server, from the server. Is DTC enabled on the server?
Now I ...
0
votes
1answer
54 views
Is it possible to stop MassTransit Runtime Services from requiring DTC?
I'm getting started using MassTransit and need to use the RuntimeServices to manage subscriptions and timeouts. The environment I'm installing into is an externally facing network divided up in to ...
0
votes
1answer
88 views
NServiceBus and DTC's
Im using the Distributor in NServiceBus and i've hit a wall of ignorence regarding DTC's.
Ive only used DTC once maybe twice before when doing stuff across processes and not a lot, so im very newbie ...
0
votes
1answer
51 views
Workflow Foundation and DTC transaction Rollback misbehavior
I'm testing the receive transaction scope in workflow foundation 4.5 and i think that there's something wrong with it!
See when I roolback a transaction either by explicit roolback:
using ...
0
votes
2answers
64 views
Commit and then Query within DTC using Entity Framework?
Quick (I think) question about how Entity Framework participates in a DTC Transaction.
If I create two DbContexts within the same distributed transaction, will data I save in the first context be ...
0
votes
0answers
34 views
Can MSDTC reverse bind on IP address instead of hostname?
We have a problem with MSDTC failing to reverse bind if the client computer is connecting via VPN or recently has been connected via VPN. What happens is that the server tries to reverse bind to the ...
1
vote
3answers
143 views
using WebSercurity.CreateAccount with other queries in a TrasactionScope, without DTC Enabled
Problem. In a registration scenario, I'm trying to insert a user in my User table and then call WebSercurity.CreateAccount for that user (in a transaction). This causes the error that MS DTC is not ...
0
votes
1answer
334 views
Unable to enlist a distributed transaction after database restart
Hi I have problem with enlist to distributed transaction after database restart.
My environment:
Windows 7 x64 with SP1
Oracle Database 11g Express Edition
ODP.NET 4.112.3.0
My program:
const ...
0
votes
0answers
13 views
How to write to log file and unzip in one transaction using the DTC
I would like to know how I can unzip files and write to log files in one transaction i.e. if an error get thrown in the middle of logging I want the files that were zipped and other log entries be ...
0
votes
0answers
130 views
DTCPing works in only one direction
if i set up two windows server 2008 r2 machines, i can get distributed transactions to work in only one direction. when i can get DTCPing to work successfully, the DTC is working. DTCPing, though, ...
0
votes
0answers
38 views
Synchronising Transactions with Spring Framework, NHibernate and WF4
I'm needing a help with the following scenario. I have a service that initiates a transaction, this transaction is managed by Spring Framework, therefore the transaction is created in an aspect. The ...
1
vote
0answers
222 views
How does the MSDTC log file (MSDTC.LOG) work?
Recently I encountered an error :
The Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled the distributed transaction
It was mentioned in one of the replies in a forum , that one of ...
0
votes
1answer
126 views
Reworking EF nested connections to avoid MSDTC on Azure
I've deployed to Azure and Azure SQL, which doesn't support MSDTC and I'm having trouble understanding how to rework my code to prevent what I assume is nested connections. I'm fairly new to EF and ...
2
votes
2answers
135 views
Do I *really* need RPC and NETBIOS to use transactional NServiceBus queues between local servers and Amazon EC2?
We have been trying - without success - to get transactional message queues working between local servers and our cloud servers up in Amazon EC2.
We're using NServiceBus, and have got the pub/sub ...
0
votes
1answer
124 views
How to retrieve error code and message when distributed tx fails? (MS DTC)
We have got a stored procedure that starts a distributed transaction via a linked server with different MS SQL 2008 databases.
We use
SET XACT_ABORT ON;
and also
BEGIN TRY / CATCH blocks
...
1
vote
0answers
64 views
MSDTC and Multiple EF ObjectContexts to separate SQL Server databases
I am having an issue with using TransactionScope that has has two Entity Framework ObjectContexts initialized in it, one for database X and one for database Y on the same server.
The first context ...
1
vote
2answers
92 views
Nested Transactions - MSDTC
I am having an issue setting up transactions in my application. When I perform a light weight transaction it works:
using (TransactionScope tx = new TransactionScope())
{
// Connect to Server 1 in ...
2
votes
0answers
638 views
Intermittent MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system [servername]
We are occasionally seeing the error "MSDTC encountered an error (HR=0x80000171) while attempting to establish a secure connection with system [servername]" on our servers. We are using NServiceBus.
...
1
vote
1answer
277 views
Using transactions across processes
I'm trying to use System.Transactions (TransactionScope) to coordinate a set of processes, each of which does some database work. Ultimately all processes need to commit or be rolled back atomically ...
1
vote
1answer
262 views
TransactionScope promoting to MSDTC although I am using the same connection string
I have two repositories that point to the same SQL Server 2008 R2 (10.50.2550.0) database. One repository is based on Entity Framework, the other uses regular SqlConnection. I need to perform an ...
3
votes
1answer
79 views
Distributed transaction in .NET program (MS-DTC config?!?) or rather in stored procedure via linked server?
We have two databases on different database servers (MS SQL Server 2008).
We need to insert data in two tables, one on each of the two database servers, and it all needs to be within a transaction, ...
0
votes
3answers
262 views
Occasional System.ArgumentNullException using TransactionScope and MS DTC
I'm occasionaly getting this exception on our production server:
System.ArgumentNullException: Value cannot be null.
at System.Threading.Monitor.Enter(Object obj)
at ...
0
votes
0answers
74 views
Distributed Transaction with .Net Remoting
As far as i know, (distributed) transactions are not supported by .net remoting. Unfortunately it is not possible for me to use WCF.
Is it complex to achieve this manually (e.g. by talking to msdtc ...
3
votes
1answer
207 views
What do these MS DTC Exceptions mean?
I wrote a program to demonstrate the behavior of DTC timeouts with multiple threads. I'm getting several exceptions, seemingly at random. Are all of these simple Timeouts, or are some of them ...
1
vote
1answer
84 views
Is This MSDTC configuration Issue?
It seems I am running into the Microsoft Distributed Transaction Coordinator (MSDTC) related issue.
SCENARIO
I am using TransactionScope and with in the single scope it hits two different databases ...
0
votes
0answers
56 views
Multiple web-servies in the same transaction
I am trying to discovery if it's possible to handle two or more web services inside a single transaction. Inside my .net method I have a call to web_service1.methodX and after the return from ...
2
votes
1answer
68 views
Why should I use transaction over MSDTC instead of System.Data.SqlClient.SqlTransaction?
Assuming I am using only one sql server database
Why would one choose transaction over MSDTC instead of SqlTransaction?
My feeling is there is some sort of "obviousness" choosing msdtc over ...
1
vote
2answers
261 views
EntityFramework CodeFirst and EDMX together in TransactionScope
I need to combine in one application
code generated from DB to EDMX file before compilation and
code generated and compiled during runtime by application itself, where generated code uses CodeFirst ...
0
votes
2answers
548 views
MSDTC: TransactionManagerCommunicationException after changing IP address of MSSQL server
after we moved our Win2k8 MSSQL2008 server to different IP address, we have troubles running unit tests against database on that SQL server from out build agent. Everything worked before we moved the ...
1
vote
2answers
593 views
EF: How do I call SaveChanges twice inside a transaction?
Using Entity Framework (code first in my case), I have an operation that requires me to call SaveChanges to update one object in the DB, and then SaveChanges again to update another object. (I need ...
0
votes
0answers
86 views
Does an MSDTC transaction track/rollback file moves across network shares on different servers?
We have an application that uses MSDTC (Microsoft Distributed Transaction Coordinator) to wrap multiple calls to a database. In between these database calls, the application also moves files from one ...
0
votes
1answer
126 views
Using transactions with EF4.1 and SQL 2012 - why is DTC required?
I've been doing a lot of reading on this one, and some of the documentation doesn't seem to relate to reality. Some of the potential causes would be appropriate here, however they're only related to ...
2
votes
1answer
347 views
Using TransactionScope in SQL Server 2012
I have read this excellent article by Pieter De Rycke:
http://pieterderycke.wordpress.com/2012/01/22/transactionscope-transaction-escalation-behavior/
I've tried to search the internet for ...
0
votes
2answers
122 views
Is it possible to use transaction between two instances without enable DTC?
I have two instances of database located in two servers. I want to create an application to insert data into the first one and then update data on the second instance, if one of these process fail ...
2
votes
3answers
467 views
Intermittent System.ArgumentNullException using TransactionScope
I have a Windows Service application which is performing some calls to SQL Server. I have a particular unit of work to do which involves saving one row to the Message table and updating multiple rows ...
2
votes
4answers
415 views
How to share a connection between EF DbContext and AspNet Membership to avoid transactions escalating to DTC
I have an ASP.NET MVC3 application that uses an EF 4.1 DbContext, database-first data layer. The EDMX approach works fine as I tend to make changes to my data model before adapting the application to ...
0
votes
0answers
170 views
SSIS DTC Transaction Snapshot Isolation
i tried to use in my SSIS Package (2005/2008) the DTC Transaction-SnapShot and it doesn't work. When I use Read Commited it works fine.
My SSIS-Package:
The whole package: IsolationLevel - Snapshot ...
0
votes
0answers
67 views
Data return from sql server cluster fails
Our product works with windows Workflow Service to handle transactions and for these activities WF is using WorkflowpresistenceStore DB. this db isin SQLCluster.
now, when we use connectionString to ...





