0
votes
0answers
309 views

TransactionScope occasionally not rolling back SQL Server 2005 transactions

I am a .NET developer of a system that uses .net 3.5 and transactionScope to make interactions with our database atomic. We occasionally use more than 1 datasource, but I am occasionally seeing this ...
1
vote
1answer
156 views

Transaction scope with pooling in Linq2Sql

If I have pooling in the connection string set to true the following code works fine. If turned of it fails with: "MSDC is unavailable". Is it just pure luck that both DataContext's picks the same ...
0
votes
1answer
503 views

TransactionScope and deadlocks in sproc

I've got a sproc that basically goes: begin transaction SELECT UPDATE INSERT commit transaction This sproc is called inside a loop from two different threads in my application, both ...
0
votes
1answer
3k views

Difference Between Transaction and TransactionScope

I am developing an application which communicates with an SQL Server 2005 database to execute some stored procedures. My client demands that all transactions be managed on the C# side and not by SQL ...
4
votes
2answers
7k 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 ...
2
votes
3answers
2k views

c# get current connection in TransactionScope transaction

I want to make transactional a series of sp call (sql server 2005) in a .net 2.0 project surrounding some piece of business logic with a using(TransactionScope...) Unluckily, I inherited the DAL ...
0
votes
3answers
606 views

.NET TransactionScopes and SQL 2005 Lightweight Transaction Manager - Multiple Connections same SPID?

Can someone shed light on what is happening behind the scenes with the SQL Lightweight transaction manager when multiple connections are opened to the same DB? With the below code, we verified that ...
4
votes
2answers
440 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 ...
1
vote
1answer
142 views

How do i unblock a process (Insert Stmt) blocked by a parent process (Insert Stmt) with in a TransactionScope

I have a child TransactionScope within a parent TransactionSope. The child TransactionScope is created, executed, and committed multiple times under the singular parent TransactionScope. The parent ...
2
votes
4answers
3k 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. ...
3
votes
2answers
3k views

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 ...