Tagged Questions
The transactionscope tag has no wiki summary.
62
votes
6answers
9k views
TransactionScope automatically escalating to MSDTC on some machines?
In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on our end-user's ...
55
votes
2answers
4k 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 ...
18
votes
5answers
5k views
NHibernate with TransactionScope
Can anyone give me a quick overview of using TransactionScope with NHibernate? Do I need to do anything special with the session/IEnlistmentNotification/etc. to get this to work? Are there any ...
15
votes
5answers
11k views
How does TransactionScope roll back transactions?
I'm writing an integration test where I will be inserting a number of objects into a database and then checking to make sure whether my method retrieves those objects.
My connection to the database ...
13
votes
2answers
463 views
Linq: Delete and Insert same Primary Key values within TransactionScope
I want to replace existing records in the DB with new records in one transaction. Using TransactionScope, I have
using ( var scope = new TransactionScope())
{
...
13
votes
7answers
13k views
How do I use TransactionScope in C#?
I am trying to use TransactionScope, but keep getting the exception below. The app is running on a different machine than the database, if that matters. I am using Sql Server 2005.
"Network access ...
11
votes
3answers
3k views
Distributed transaction completed. Either enlist this session in a new transaction or the NULL transaction
Just curious if anyone else has got this particular error and know how to solve it?
The scenario is as follow...
We have an ASP.NET web application using Enterprise Library running on Windows Server ...
8
votes
3answers
400 views
.NET Transactionscope options
I am a newbie in C#. So i was just wondering if anybody can help me figure out how C# works with transactionscope? Because i am a little confused by the definition of it. However, let me explain about ...
8
votes
1answer
454 views
Recommended practice for stopping transactions escalating to distributed when using transactionscope
Using the TransactionScope object to set up an implicit transaction that doesn't need to be passed across function calls is great! However, if a connection is opened whilst another is already open, ...
8
votes
4answers
455 views
Why doesn't TransactionScope assume success?
The TransactionScope expects a call to its Complete method as follows. Otherwise the transaction will not be committed.
using(TransactionScope scope = new TransactionScope())
{
/* Perform ...
8
votes
7answers
11k views
Why doesn't TransactionScope work with Entity Framework?
See the code below. If I initialize more than one entity context, then I get the following exception on the 2nd set of code only. If I comment out the second set it works.
{"The underlying provider ...
7
votes
2answers
3k views
C# - System.Transactions.TransactionScope
I was curious about the TransactionScope class.
For the most part, I assume it was intended for database connections (which is what I've used it for).
My question, is can you put any code in the ...
7
votes
4answers
630 views
How to handle nested datacontext in the BL?
public class TestBL
{
public static void AddFolder(string folderName)
{
using (var ts = new TransactionScope())
{
using (var dc = new TestDataContext())
...
6
votes
3answers
5k 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 ...
6
votes
3answers
4k views
What is the reason of “Transaction context in use by another session”
I'm looking for a description of the root of this error: "Transaction context in use by another session".
I get it sometimes in one of my unittests so I can't provider repro code. But I wonder what ...
6
votes
2answers
955 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 ...
6
votes
3answers
2k views
Why does the following SQL Server insert deadlock when run within a transaction?
I'm currently inserting a record into a SQL Server Table and then selecting the auto-increment ID as follows:
(@p0 int,@p1 nvarchar(8))INSERT INTO [dbo].[Tag]([Some_Int], [Tag])
VALUES (@p0, @p1)
...
6
votes
2answers
1k views
How to know if the code is inside TransactionScope?
What is the best way to know if the code block is inside TransactionScope?
Is Transaction.Current a realiable way to do it or there are any subtleties?
Is it possible to access internal ...
5
votes
4answers
156 views
Is it possible to rollback committed data with TransactionScope?
The goal is simple - rollback data inserted by a unit test. Here is how it goes. In a unit test, a method is called that creates a new connection and inserts some data. After that a unit test creates ...
5
votes
2answers
322 views
Dtcping test passes but still have a Communication with the underlying transaction manager has failed
DTCPing tool says everything should be fine. The actual exception is:
System.Transactions.TransactionManagerCommunicationException:
Communication with the underlying transaction manager has ...
5
votes
4answers
520 views
C# - Usage of transactions in business layer (SQLServer 2005+ , Oracle) - good examples
I am gonna build a service using 3-tier architecture and I am really worried about how to handle operations in a transacted way.
I know I have 2 options: IDbTransaction and TransactionScope... but I ...
5
votes
2answers
384 views
TransactionScope always tries to promote to MSDTC
I am trying to use a transaction scope inside a loop. The entire loop takes place using a single connection to the database. I am using entity framework 4 for database access. During the second ...
5
votes
2answers
331 views
TransactionScope/SqlTransaction timeout extension
Is it possible to extend the timeout of a transaction (with SQL Server) once the transaction has started?
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
3answers
596 views
C# TransactionScope - L2E
Is it worth using System.Transactions.TransactionScope on Linq to Entities?
On the MS documentation, it says that SQL calls within ObjectContext.SaveChanges() are all rolled into one transaction ...
5
votes
3answers
2k views
Common Gotchas when using TransactionScope and MS DTC
I am just starting to work with using TransactionScope, I find that there are always unexpected things I run into that take forever to debug.
I figure that having a consolidated list of these would ...
4
votes
3answers
2k views
Problems with TransactionScope in ASP.NET
I've build a class to synchronize data between two different datasources. This synchronization is divided into multiple parts (and methods). Every method has his own TransactionScope and the methods ...
4
votes
2answers
224 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?
4
votes
2answers
1k views
Nested/Child TransactionScope Rollback
I am trying to nest TransactionScopes (.net 4.0) as you would nest Transactions in SQL Server, however it looks like they operate differently. I want my child transactions to be able to rollback if ...
4
votes
1answer
501 views
How to implement a memory transaction scope in C#?
we have a cache which I would like to put some transaction scopes around so that any process have to explicitly 'commit' the changes it wants to do to the cached objects and make it possible to ...
4
votes
1answer
3k views
Why is TransactionScope operation is not valid?
I have a routine which uses a recursive loop to insert items into a SQL Server 2005 database The first call which initiates the loop is enclosed within a transaction using TransactionScope. When I ...
4
votes
2answers
341 views
TransactionScope works in some places and not in others
Using ASP.NET 3.5, Linq to SQL, SQL Server 2005 on Windows Server 2003. Running VS 2008 on XP SP3 locally.
We need to be able to wrap inserts, updates, and deletes in a transaction. When we first ...
4
votes
1answer
787 views
TransactionScope and Connection Pooling
I'm trying to get a handle on whether we have a problem in our application with database connections using incorrect IsolationLevels. Our application is a .Net 3.5 database app using SQL Server 2005. ...
4
votes
2answers
633 views
Is it important to Open a sql connection in the transactionscope
I created a sqlconnection, CN1. Then this CN1 is opened. Later in the code there is a transactionscope. If I execute a sql command on this CN1 connection, is this within transaction?
Code looks like ...
4
votes
2answers
907 views
Data committed even though System.Transactions.TransactionScope.Commit() not called
Under what circumstances can code wrapped in a System.Transactions.TransactionScope still commit, even though an exception was thrown and the outermost scope never had commit called?
There is a ...
4
votes
1answer
2k views
Locking a table with a select in Entity Framework
I need to be able to do
select * from myTable with (xlock,holdlock)
from Entity Framework. Is this possible? I've opened a TransactionScope with the Serializable isolation level but my selects are ...
4
votes
4answers
2k views
NHibernate, transactions and TransactionScope
I'm trying to find the best solution to handle transaction in a web application that uses NHibernate.
We use a IHttpModule and at HttpApplication.BeginRequest we open a new session and we bind it to ...
4
votes
1answer
7k 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. ...
3
votes
2answers
75 views
TransactionScope not working with Parallel Extensions?
If i do the following:
Using scope = New TransactionScope()
entries.Content.ReadAs(Of IList(Of WebMaint)).AsParallel.ForAll(Sub(entry)
...
3
votes
2answers
181 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 ...
3
votes
2answers
185 views
Transaction and ASP.NET Membership API
Hope someone of you have been there. I need to do some database stuff which involve multiple tables. I am using SubSonic 3 SimpleRepository to update/access records. Now in between calls to update ...
3
votes
2answers
181 views
DTC firewall requirements?
I'm attempting to set up an environment in which a TransactionScope originating on a web server (asp.net) will flow a transaction through WCF to an application server and subsequently through to the ...
3
votes
1answer
332 views
TransactionScope vs. IDbTransaction
What are the advantages/disadvantages of using TransactionScope in comparison to IDbTransaction? I will suggest some - please correct/complete the list.
Advantages of TransactionScope:
...
3
votes
3answers
664 views
How to perform a transaction with an Entity Framework object context?
I created very a simple database using Entity Framework 4. I'd like to be able to use transactions on entities, but I can't seem to keep changes from rolling back. I really just need a way to ...
3
votes
3answers
704 views
NHibernate 3.0: TransactionScope and Auto-Flushing
In NHibernate 3.0, FlushMode.Auto does not work when running under an ambient transaction only (that is, without starting an NHibernate transaction). Should it?
using (TransactionScope scope = new ...
3
votes
2answers
567 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 ...
3
votes
2answers
2k views
Difference between Implicit and Explicit Transaction
What is the difference between Implicit and Explicit transaction in Sql Server 2008?
What happens in TransactionScope background? I'm using TransactionScope but in Sql server profiler I don't see ...
3
votes
1answer
946 views
TransactionScopeOption - Required or RequiresNew
I'm currently having a confusion concerning the constructor of the TransactionScope object.
Say that users of my website can order products. On submitting their request, I carry out a verification of ...
3
votes
3answers
646 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 ...
3
votes
2answers
243 views
How do I share a transaction across a set of parallel tasks
I have a TransactionScope object and I want to use it for all the tasks created using Parallel.ForEach, how do I achieve this?
I want to writing to a message queue in parallel, 20-50 messages, ...