Tag Info

New answers tagged

0

The problem is that GetRolesForUser causes a new connection to open to a second database, and that in turn picks up that it is in a TransactionScope. In turn this (MSDN - System.Transactions Integration with SQL Server) then promotes to the DTC. You could try a few options: Get roles before the transaction starts You could retrieve string[] roles outside ...


0

You need to pass a DependentTransaction to the Async methods. The Async method needs to insert this DependentTransaction in the contructor of a new TransactionScope. It is documented on MSDN.


0

Okay, I have realized some solutions to the question: The first one is to have a list of all the tables and access them by that list. Thus, the exampled Table2 will never be accessed before Table1 if both are required by the context, and the deadlock will not happen. The second is to create a lazy-IO system which tracks all the necessary changes (like ...


0

The distributed transaction needs time to commit. You can either wait briefly with Thread.Sleep before checking your result, or you can set a special property in the session that is checking the result: session.Advanced.AllowNonAuthoritativeInformation = false; This seems like a bug, but it is actually by design. Read Working with System.Transactions in ...


2

you can handle start and stop of transaction for call to DB please check this How to prevent EntityFramework deadlock when concurrently running these two statements hope this help


0

To enlist automatically, a connection must be opened (or possibly created, but opened sounds more likely) inside the ambient transaction. For example: Using tran2 As New TransactionScope() Try DB_MSSQL = New BBDD(ClassUtil.CadenaConexion_Destino) Dim SqlPrueba As String = "UPDATE CAMPANIA_PEDIDOS set _idlegacy = -6 where ...


0

I also had this problem with mono v.2.10.9 and mysqlconnector v. 6.6.5 and 6.7.2-Beta and I was unable to find a solution for this problem but now I figured it out. First I took the sources of mysqlconnector and added them into my project folder. Thought it would work if I compile the connector directly with mono but it doesn't. Then I stepped trough the ...


0

Transactions should not to be running for a long time! This is by design, in the underlying platforms such as SQL Server. The timeouts are like safety valves; opening them too much could bring down the system. The reason the Inserts take so much time is because you execute the query for each row. This means for each row: The Client has to send the ...


0

I think you can set the command timeout in the code also: DBCommand, if you are using a command. And the DbCommand does not inherit from the transaction scope or connection string , so you have to set it up manually.


1

You can use just one connection object across Data Access Methods. That way MSDTC is never triggered. I had similar experience but did not have access to adjust the SQL server. Using a singleton pattern, I created the Data Connection and use same connection object within a transaction across several method calls.


0

I believe you need to commit the transaction at the bottom of the loop (this will cause other problems you need to consider, ie how to rollback). If you wait til you're outside of the inner transaction loop all the transactions will get bundled and committed at once which means the performance will actually be far worse than the performance of the first ...


0

The reason it was not picked up was because the maxTimeOut value should be placed at the end of the machine.config file just before the closing configuration tag. As soon as I have done it this way it started working. <system.transactions> <machineSettings maxTimeout="01:00:00" /> </system.transactions> </configuration>


1

try setting the value in the 32bit machine config C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config Could be that the winforms is set for x86 compilation. Also check that there isnt an odac transaction timeout setting and assembly to set as well.


1

Gah, if only I'd tried setting up a test using a duplication of the live system earlier etc etc... As soon as I turned off Mutual Authentication and set it to No Authentication it worked like a charm. P.S. No Auth isn't much of a security hole in an environment that doesn't open up the MSDTC machines/ports to the outside world. See potential risks of using ...


1

I have made many test regarding EF, EntLib DAAB, and TransactionScope. There are several points you must take into account. SQL Server Version Connection String EF and EntLib version I don't remember the other combinations, but with SQL Server 2008 or later, EF5, and Entlib 5, you can enroll several DbContexts and DAAB operations in the same ...


1

from the documentation: The actual work of commit between the resources manager happens at the End Using statement if the TransactionScope object created the transaction. So it doesn't look like you can truly commit the transaction before the using statement end.



Top 50 recent answers are included