Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
301 views

Session-Per-Request with SqlConnection / System.Transactions

I've just started using Dapper for a project, having mostly used ORMs like NHibernate and EF for the past few years. Typically in our web applications we implement session per request, beginning a ...
7
votes
4answers
620 views

Strategies to Avoid Transaction Escalation in System.Transactions

So, based on the answer to my previous question, transactions do get elevated from the LTM to the DTC if multiple connections are opened during a transaction, even if the connections all have the same ...
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
1answer
109 views

How to create a class that works with TransactionScope?

Just wondering, if I want to create a class that does something and I want to be able to be used in a TransactionScope, what would I need to implement? That is: My class needs to be aware that it's ...
5
votes
3answers
327 views

what is practical use of System.Transactions?

I have seen System.Transactions namespace, and wondered, can I actually make a RDMBS with this namespace usage? But when I saw some examples, I do not understand how System.Transactions does ...
5
votes
2answers
443 views

.net durable resource manager for transactional filesystem access

I'm trying to wrap my head around the use of the System.Transactions namespace in C#. I've found some documentation on MSDN regarding using resource managers, but it only covers volatile, in-memory ...
2
votes
2answers
256 views

using TransactionScope : System.Transactions.TransactionAbortedException: The transaction has aborted

We're trying to do indirect nesting transaction using the code below, .NET 3.5 ,& SQL Server 2005. MSDN says that when using TransactionScope, a transaction is escalated whenever application ...
2
votes
0answers
256 views

Row-Level Update Lock using System.Transactions

I have a MSSQL procedure with the following code in it: SELECT Id, Role, JurisdictionType, JurisdictionKey FROM dbo.SecurityAssignment WITH(UPDLOCK, ROWLOCK) WHERE Id = @UserIdentity I'm ...
1
vote
1answer
132 views

TransactionScope across AppDomains and processes

Is it real to use System.Transactions (primarily TransactionScope) across different AppDomains and processes? DependentTransaction works only inside one AppDomain.
1
vote
1answer
522 views

SQL CE 4 System.Transaction support

A similar question was asked here but had no answer. I am attempting to use a System.Transactions.CommittableTransaction with EF CTP4 and SQL CE 4. I have created the following transaction attribute ...
1
vote
1answer
270 views

How .net allows nested transactions with TransactionScopeOption

I have learned that Oracle & sql server database does not allow nested transactions. Then how does c# allow us to perform nested transactions using transactionscopeoption?
1
vote
0answers
545 views

MSDTC attempts to enlist client machine in a distributed transaction

We're seeing the following intermittent warning logged by MSDTC: A caller has attempted to propagate a transaction to a remote system, but MSDTC network DTC access is currently disabled on ...
1
vote
2answers
135 views

Is something along the lines of nested memoization needed here?

System.Transactions notoriously escalates transactions involving multiple connections to the same database to the DTC. The module and helper class, ConnectionContext, below are meant to prevent this ...
1
vote
5answers
1k views

TransactionInDoubtException using System.Transactions on SQL Server 2005

The underlying question to this post is "Why would a non-promoted LTM Transaction ever be in doubt?" I'm getting System.Transactions.TransactionInDoubtException and i can't explain why. ...
1
vote
5answers
1k views

Transaction Scope

How does the transaction scope work? How does it know when there is another context being used already and how might I implement another kind of scope in my code. I'm primarily a vb.net developer ...
0
votes
0answers
30 views

System.Transactions.ComittableTransaction Rollback not rolling back

I have a transaction that inserts a record into a table (SQL Server 2008 R2). This table has an 'instead of' insert trigger on it that will only do the insert under certain conditions. The insert to ...
0
votes
3answers
51 views

How to atomic select rows in Mysql?

I have 5+ simultaneously processes selecting rows from the same mysql table. Each process SELECTS 100 rows, PROCESS IT and DELETES the selected rows. But I'm getting the same row selected and ...
0
votes
2answers
29 views

Execute code only if parent transaction completes

The code below will output: Event published Command executed Using System.Transactions how can I have the EventPublisher enlist in a parent transaction such that it only executes if the ...
0
votes
0answers
13 views

Looking for a design on which to build a generic load balanced transaction aware middleware

For some time now, I have been working on a generic transaction aware middleware that manages access to datasources that are not transaction aware. Up to now everything works fine assuming that all ...
0
votes
2answers
224 views

Why is a nested transaction committed even if TransactionScope.Complete() is never called?

I was testing to see how nested transactions work, and uncovered this disturbing and unexpected behavior. using(TransactionScope otx = new TransactionScope()) using(SqlConnection conn1 = new ...
0
votes
0answers
30 views

How do I integrate my code with System.Transactions?

The question is that simple. Suppose I have some kind of transactional system which I want to integrate with standard System.Transactions facilities. More specifically, I want it to play well with ...
0
votes
0answers
55 views

DependentTransaction and propagating transaction accross AppDomain

I have seen a lot of samples of propagating transactions accross AppDomains (for example: http://dotnet.dzone.com/news/propagating-transaction-across) but none of them uses DependentTransaction class ...
0
votes
0answers
450 views

Network access for Distributed Transaction Manager (MSDTC) has been disabled

error: Network access for Distributed Transaction Manager (MSDTC) has been disabled. Please enable DTC for network access in the security configuration for MSDTC using the Component Services ...
0
votes
1answer
62 views

Example of alternative to TransactionCompleted event?

From the MSDN entry for TransactionCompleted: You can register for this event instead of using a volatile enlistment to get outcome information for transactions. Caution Signing up for this ...
0
votes
1answer
270 views

Inner TransactionScope with different IsolationLevel, how can it be achieved?

The current implementation of TransactionScope lacks the ability to change IsolationLevels in nested scopes. MSDN states: When using nested TransactionScope objects, all nested scopes must be ...
0
votes
1answer
247 views

Java Transactions API and .NET System.Transactions

I'm analyzing the different behaviors between the JTA (Java Transactions API) and the .NET counterpart System.Transactions: the approach is quite different between the two of them. In fact, Java's ...