Windows error 0x8004D00E, -2147168242

Detailed Error Information

XACT_E_NOTRANSACTION[1]

MessageThe transaction has already been implicitly or explicitly committed or aborted
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code53262 (0xd00e)

Questions

4votes
1answer

ESB Toolkit 2.1 error: "Could not enlist Send Port 'ALL.Exceptions'..."

I reinstalled the ESB toolkit using the same process (painful) that worked twice before. But now when I go try to start the BizTalk application "Microsoft.Practices.ESB" in the BizTalk Administration Console, the application fails to start showing the following error: Could not enlist Send Port 'ALL.Exceptions'. Exception from HRESULT: 0xC00CE557 [...] read more
biztalk
esb
biztalk-2010
3votes
2answers

HRESULT: 0x8004D00E using TransactionScope - C#

I received the following error when I tried to run a C# WinForms application on a Windows Server 2003 Standard Edition SP1 machine that was connecting to a SQL server 2000, converting the data in the WinForms app and inserting the converted into a SQL server 2005 application. I am [...] read more
c#
.net
sql-server-2005
sql-server-2000
transactionscope
2votes
4answers

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 TransactionScope() I begin having to configure MSDTC which we did, but then there are firewall [...] read more
linq-to-sql
transactions
msdtc
2votes
1answer

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 via one parent process. Unfortunately, nothing I've tried so far works. My basic strategy is to TransactionScope in the parent [...] read more
c#
.net
transactionscope
msdtc
system.transactions
1vote
1answer

MSDTC fails intermittently

I have a Windows 2003 server where MSDTC is running. I have set it to No Authentication Mode, with allow inbound-outbound settings. My MSDTC works but it fails for the 1st transaction of the day. On immediate another transaction it will start working. Error is : The transaction has already [...] read more
transactionscope
msdtc
1vote
0answers

System.Transactions.TransactionException: The transaction has already been implicitly or explicitly committed or aborted

I have the following code: private void MigrateInTrackingChannelsDbTable(Guid toSsoId, string ctid) { Database database = DatabaseFactory.CreateDatabase("TrackingChannels"); try { using (DbCommand command = database.GetStoredProcCommand("usp_TrackingChannels_MigrateToolbar")) { database.AddInParameter(command, "@ToSSOId", DbType.Guid, toSsoId); database.AddInParameter(command, "@CTID", DbType.String, ctid); database.ExecuteNonQuery(command); } } catch (Exception ex) { Log.Application.Error( string.Format("CPUserService: MigrateInTrackingChannelsDbTable failed with toSsoId:{0}, ctid:{1}", toSsoId, ctid), ex); throw; [...] read more
c#
asp.net
enterprise-library
transactionscope
0votes
0answers

MS DTC stopped BizTalk's transaction causing stuck message in Receive Pipeline

We had the error that the Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled a transaction of BizTalk which causes some stuck messages in the Receive Port, it has never happened before for years but it just occurs recently in 1 minute which causes few stuck messages. Is there anyway [...] read more
sql-server
biztalk
msdtc
biztalk-2016
0votes
0answers

MSDTC Issue - Saving Two Related Entities with Disabling Validation

I am getting a MSDTC error every now then and also specially when I execute my code 1st time. Immediately thereafter the code works fine and then errors out after a while again. I am trying to save my entity - hardware along with a related entity - server that [...] read more
entity-framework
entity-framework-6
msdtc

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0