Tagged Questions
3
votes
2answers
150 views
SQLTransaction has completed error
I got following error once in my application.
This SQLTransaction has completed; it is no longer usable
Stack Trace is attached below – It says about Zombie Check and Rollback.
What is the ...
4
votes
1answer
116 views
Transactionable objects in C#?
Looking at the code :
class MyClass { public static int g=1;}
using (TransactionScope tsTransScope = new TransactionScope())
{
//Do stuff here
MyClass.g=999;
tsTransScope.Complete();
}
...
2
votes
2answers
44 views
Is there some way to open a new connection that does not take part in the current TransactionScope?
My application needs to write to a table that acts as a system-wide counter, and this counter needs to be unique thorough the whole system and all his applications.
This counter is currently ...
0
votes
1answer
213 views
TransactionScope with uncommited first transaction fails on distributed transaction
When trying to debug something I found code that was effectively doing the following:
Creating a TransactionScope
Creating a Transaction (in this case an nHibernate tx, but not really important)
...
0
votes
1answer
118 views
TransactionScope not working correctly with 2 layer database setup
I have a single method that reaches out to 2 methods. One handles Inserts and the other handles Updates. I put a transaction scope around these 2 methods so if there is any issues it will roll back. I ...
2
votes
1answer
211 views
Implementing a Lightweight TransactionScope
I'm referring to this SO question:
Bulk inserts taking longer than expected using Dapper
and to this @SamSaffron comment to that question:
"TransactionScope does a bunch of DTC nonsense you ...
3
votes
1answer
263 views
How does a TransactionScope implementation work? What database support is required?
Just reading up on TransactionScope implementations.
Could someone confirm if this technique is driven by client-side .net, or if it requires something special from specific DB Vendors? Is this a SQL ...
9
votes
1answer
853 views
SQL Server: Isolation level leaks across pooled connections
As demonstrated by previous Stack Overflow questions (TransactionScope and Connection Pooling and How does SqlConnection manage IsolationLevel?), the transaction isolation level leaks across pooled ...
1
vote
2answers
169 views
Determining if a TransactionScope is committed or not
Using .net 2 and ADO.NET.
Is there a way to determine if a transaction is committed or not? The reason is that I'm stuck with a legacy framework that I cannot alter and there might or might not be an ...
0
votes
2answers
378 views
TransactionScope And Function Scope- Are These Connections In-Scope?
Suppose you set up a TransactionScope object as illustrated per the Microsoft example here. Now suppose that you need to update a lot of database tables, and you want them all in the scope of the ...
3
votes
2answers
1k views
“The transaction has already been implicitly or explicitly committed or aborted” in transaction scope
I have a web server and two DB servers on two different networks, Db1 and Db2(Remote Database).
DB1: SQL Server 2008 R2, operating system: Windows Server 2003 SP2
DB2: SQL Server 2000, operating ...
4
votes
3answers
3k views
Unclear exception from TransactionScope
I use TransactionScrope in my code to execute 50 SQL command on SQL Server 2008 R2.
this is an example for my code:
private void DoSomething()
{
bool IsComplete = false;
...
1
vote
2answers
349 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.
2
votes
1answer
252 views
System.Transactions vs. MSDTC
What is possible with MSDTC but is not possible with System.Transactions (and TransactionScope)?
As I know MSDTC supports usage of one transaction from several processes but TransactionScope (with ...
1
vote
0answers
216 views
TransactionScope on Multiple Threads [duplicate]
Possible Duplicate:
TransactionScope and multi-threading
I'm using a TransactionScope so that I can rollback changes. I'm also using PLINQ on a IEnumerable of operations I want to perform.
...
4
votes
3answers
449 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?
3
votes
2answers
1k views
TransactionScope nuances
Let's imagine I have two threads which execute some database-oriented code in thread-specific TransactionScopes with ReadCommitted isolation level. But there is some table which data should be shared ...
0
votes
1answer
615 views
.NET transaction management without TransactionScope
I was actively using TransactionScope in my application and was happy. But now I came to the situation where TransactionScope is not enough flexible: first of all, because I can't change ...
0
votes
1answer
549 views
Network access disabled in MSDTC
I am using System.Transactions.TransactionScope() in a unit test to insert a record, attempt to read it, and let the transaction scope rollback so as to leave no footprints behind in the database.
...
4
votes
3answers
2k views
2 sibling nested transactionScope gives: the Transaction has aborted
this code gives me the error: the Transaction has aborted.
if I remove 1 nested transaction than it doesn't throw
using(var scope = new TransactionScope())
{
repo.Insert(new Foo {Fname ...
0
votes
1answer
231 views
Isolated ADO.NET connection and transaction within a transactionscope
Background: I have an ASP.NET MVC application that wraps controller actions in a TransactionScope using an Action Filter.
Further downstream (in my infrastructure layer); I'd like to open up a new ...
0
votes
1answer
716 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
2answers
769 views
TransactionScope not rolling back with SqlDataAdapter.Update
I'm using SqlDataAdapter.Update with DataTables to update two SQL tables in a single transaction. If either insert fails I want to roll back all data. This is my code:
using (var conn = new ...
22
votes
6answers
14k views
TransactionScope Prematurely Completed
I have a block of code that runs within a TransactionScope and within this block of code I make several calls to the DB. Selects, Updates, Creates, and Deletes, the whole gamut. When I execute my ...
98
votes
2answers
9k views
Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction?
What does it mean for an SqlConnection to be "enlisted" in a transaction? Does it simply mean that commands I execute on the connection will participate in the transaction?
If so, under what ...
3
votes
1answer
1k views
Why is TransactionScope using a distributed transaction when I am only using LinqToSql and Ado.Net
We are having problems on one machine, with the error message:
"MSDTC on server XXX is unavailable."
The code is using a TransactionScope to wrap some LingToSql database code; there is also some ...
7
votes
2answers
2k views
TransactionScope helper that exhausts connection pool without fail - help?
A while back I asked a question about TransactionScope escalating to MSDTC when I wasn't expecting it to. (Previous question)
What it boiled down to was, in SQL2005, in order to use a ...
2
votes
4answers
2k views
Does ADO Entity Framework support non DTC transactions? Multiple queries inside one EntityContext and one TransactionScope is causing DTC promotion
I have a web application that uses the Entity Framework - we make use of the TransactionScope class to provide ambient transactions.
Is there any way to tell EF to use a standard T-SQL transaction in ...
1
vote
1answer
1k views
Using ADO.Net transactions within a TransactionScope?
I've been reading about TransactionScope and had a question about its interoperability with ADO.Net transactions. Right now we have some data access methods that each call a stored proc and begin and ...
1
vote
1answer
542 views
Is there a way to create an ADO.NET connection and ignore the ambient Transaction?
I have a situation where I am running in a WCF service that has TransactionScopeRequired=true, which means there will always be an ambient transaction.
However, I need to start a new connection that ...
9
votes
2answers
12k views
TransactionScope and Isolation Level
we have a problem to use TransactionScope. TransactionScope get to us very good flexibility to use transactions across our Data Access Layer. On this way we can use transactions implicit or explicit. ...

