Tagged Questions
0
votes
0answers
18 views
TransactionScope; how to commit after an exception occured
I am retrofitting a somewhat complex program. There are hundreds of UI's which may use reflection to invoke lists of methods. Some methods call essentially 3rd party DLL's. Some DLL's throw ...
1
vote
2answers
40 views
Issue with timeout within TransactionScope in C#
I have an insert method that works fine with smaller data sets, but once the data sets get beyond a certain size , the method times out, regardless of what i set in the initial transaction scope.
...
0
votes
1answer
57 views
C# Nested transaction in a loop, but rolling back if any of them fail
The issue i'm trying to solve is as follows:
I have a process that ingests data from a file and inserts certain things in multiple tables, as it is now it is all done with one transaction, however ...
1
vote
1answer
116 views
Does the first insert into a table effectively lock the entire table?
Scenario:
TransactionScope(TransactionScopeOption.Suppress) query embedded within a wrapper TransactionScope(TransactionScopeOption.Required). Prior to the "Suppress" query there is another query ...
0
votes
4answers
143 views
Can TransactionScope be used across 2 databases on the same Microsoft SQL server?
I have a situation where when I update user I also have to keep track of all changes made to the user - sort of like activity log for the user table. This activity log is located in a different ...
0
votes
2answers
95 views
Need For a TransactionScope Which Won't Rollback With An Exception
I have Some Command Like Insert, Update, Create and so on that i want to run them in some database in a SQL instance.
i use transaction scope for this and i want to run all of the commands on all ...
0
votes
1answer
68 views
optimal isolation level for specific applications
Trying to understand isolation levels better - using entity framework and sql server
What would be the recommended isolation level for the following scenario -
An online booking system say for ...
3
votes
1answer
54 views
Can I specify a transaction name in TransactionScope
I know I can specify the transaction name by
SqlConnection.BeginTransaction("SampleTransaction");
But it seems there is no way in the case of TransactionScope. Could somebody give some hints?
0
votes
1answer
412 views
Nested Transactionscope , Required -> Suppress -> Required
Which Transaction does the inner TransactionScope take as ambient transaction ?
using ( var t1 = new TransactionScope( TransactionScopeOption.Required ) )
{
//MyStuff
using ( var t2 = new ...
3
votes
3answers
106 views
Is this .NET/SQL Server transaction scenario possible?
I just realized that I fundamentally don't understand how .NET/SQL Server transactions work. I feel like I might pushing the envelop on "there's no such thing as a dumb question", but all of the ...
2
votes
1answer
339 views
Using TransactionScope in SQL Server 2012
I have read this excellent article by Pieter De Rycke:
http://pieterderycke.wordpress.com/2012/01/22/transactionscope-transaction-escalation-behavior/
I've tried to search the internet for ...
2
votes
3answers
109 views
Is it possible to rollback only nested transaction for autotesting
Consider the following code:
ExecuteSQL("UPDATE ...");
using (var t = new TransactionScope())
{
ExecuteSQL("UPDATE ...");
if (SomeCondition)
t.Commit();
else
...
0
votes
3answers
214 views
SQL server Isolation level
I have n machines writing to DB (sql server) at the exact same time (initiating a transaction). I'm setting the Isolation level to serializable. My understanding is that whichever machine's ...
1
vote
2answers
820 views
Why doesn't this transactionscope work?
Playing with transactions for the first time I thought I'd get the following code to work:
namespace database
{
class Program
{
static string connString = ...
0
votes
1answer
71 views
Will the page lock be released on committing nested transaction?
It is well known that the database locks taken inside the transaction are released on the end of that transaction. So, in this code..
public static TransactionScope CreateTransactionScope()
{
...
0
votes
1answer
235 views
Will the nested transactions be rolled back when the root one rolls back?
In this code..
public static TransactionScope CreateTransactionScope(bool createNew = false)
{
return new TransactionScope(
createNew ? TransactionScopeOption.RequiresNew : ...
2
votes
3answers
117 views
TransactionScope error saving a lot of information
I am developing a .NET web application with C# and SQL Server as database, being newbie for both technologies. I have a problem when I attempt to save a lot of information at the same time.
My code ...
1
vote
2answers
2k views
Begin transaction in VB.net AND SQL Server 2008
I begin a transaction in vb.net. I execute a stored procedure on SQL Server 2008. That stored procedure contains BEGIN TRANSACTION. It fails, and ROLLBACK in CATCH block runs...
BEGIN CATCH
IF ...
2
votes
1answer
233 views
Executing multiple SPs containing BEGIN TRANS - COMMIT TRANS using TransactionScope
What happens when BEGIN TRANS - COMMIT TRANS is done in one SP and Multiple SPs are executed in TransactionScope and error is thrown before completing scope.
So pseudo code is as follows
//Using ...
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 ...
3
votes
1answer
485 views
Nested TransactionScope and/or nested connections causing MSDTC escalation
I am trying to avoid MSDTC escalation in my application. I am using LINQ with SQL Server Express 2008 R2, and later will be using the full version.
I have written a database wrapper class which ...
0
votes
1answer
162 views
Using TransactionScope to update tables located on geographically-separated servers (not linked)
I am in need of writing a process that needs to update 2 identical tables located in 2 different databases on servers that are geographically separated.
We can't add one of the servers as a linked ...
0
votes
4answers
189 views
Non Transactional Execution Within a TransactionScope
I am executing multiple stored procedures from within a TransactionScope. Is there any way to execute a SqlCommand (while still within the scope of the using statement) but remove it from the ...
4
votes
2answers
978 views
Does TransactionScope Need DTC Service on?
From what I'm reading, in order to use TransactionScope in .NET, you need the Distributed Transaction Coordinator service in Windows to be running. I have that service turned off, and my app seems to ...
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 ...
1
vote
1answer
434 views
Transaction Timeout exception in a console app running series containing series of SPs
I have got a console application in which I have couple of stored procedures called inside the transaction scope which looks as below.
using (TransactionScope scope = new TransactionScope(new ...
2
votes
2answers
179 views
Transaction in Stored Proc + Client Code
I have a SQL Server Stored Procedure that creates a TRANSACTION like this:
BEGIN TRY
BEGIN TRANSACTION
INSERT INTO Table1 ...
INSERT INTO Table2 ...
COMMIT
END TRY
BEGIN CATCH
...
3
votes
2answers
789 views
Is it possible to use System.Transactions.TransactionScope with SqlBulkCopy?
Very simple question: is it possible to use System.Transactions.TransactionScope together with SqlBulkCopy? The documentation Transaction and Bulk Copy Operations doesn't mention anything (at least as ...
7
votes
2answers
2k 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 ...
6
votes
1answer
5k views
TransactionScope TransactionAborted Exception - transaction not rolled back. Should it be?
(SQL SERVER 2008)
If a Transaction Timeout error occurs within a TransactionScope (.Complete()) would you expect the transaction to be rolled back?
Update:
The error is actually being thrown in the ...
3
votes
3answers
233 views
Does TransactionScope support atomic DB execution?
I am at the moment developping a project where the DAL is implemented in .Net using the ADO Entity Framework.
The DB structure is not straightforward and I would like to be able to ensure that some ...
1
vote
2answers
713 views
TransactionScope and SQL Server Compact
SQL Server Compact doesn't support distributed transactions. So if there are more than one connection inside TransactionScope - the exception is thrown. Is there any way to setup ADO.NET provider to ...
5
votes
2answers
7k 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 ...
5
votes
2answers
532 views
TransactionScope/SqlTransaction timeout extension
Is it possible to extend the timeout of a transaction (with SQL Server) once the transaction has started?
1
vote
1answer
429 views
How can i handle connections to different databases inside a single transaction scope
I'm trying to access data from two different databases inside a transactionscope.
But while executing any query on the second database , i get "The operation is not valid for the state of the ...
0
votes
1answer
2k views
NHibernate transaction problem with multiple sessions
I have set up NHibernate to run in a windows service with MS Sql Server 2008. I use a regular TransactionScope to ensure that the operation is atomic.
NHibernate is set up to create a session factory ...
2
votes
1answer
1k views
Transaction not rolling back
I have a transation that doesn't seem to rollback and getting a strange error. I'm using a transaction that is connected to SQL Server 2008 on a different server and MSMQ on the same server as the ...
2
votes
1answer
383 views
LINQ and TranscationScope not working
I am using LINQ select statement wrapped in a TransactionScope (to change the locking) but according to SQL Profiler, it doesn't seem to be working. My code looks like:
using (var ts = new ...
0
votes
2answers
902 views
TransactionScope with IsolationLevel set to Serializable is locking all SQL SELECTs
I'm using PowerShell transactions; which create a CommittableTransaction with an IsolationLevel of Serializable. The problem is that when I am executing a Transaction in this context all SELECTs are ...
0
votes
1answer
254 views
How can I force TransactionScope to use the same connection across Database calls?
Good Morning All,
I have code similar to the following
try{
using(var tx = new TransactionScope()){
var Xupdated = someDao.DoSomeUpdateQuery(); //this dao uses MS Data ApplicationBlock
...
3
votes
1answer
244 views
Question About TransactionScope in .NET
using (TransactionScope scope = new TransactionScope())
{
int updatedRows1 = custPh.Update(cust.CustomerID, tempPh1, 0);
int updatedRows2 = custPh.Update(cust.CustomerID, tempPh2, 1);
int ...
1
vote
1answer
529 views
Delete Stored Proc Deadlock in Sql Server
I am having the following deadlock in SQL Server 2005 with a specific delete stored proc and I can't figure out what I need to do to remedy it.
<deadlock-list>
<deadlock ...
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 ...
6
votes
4answers
9k 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 ...
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 ...
5
votes
1answer
1k 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. ...
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 ...
0
votes
1answer
343 views
Does Distributed Transaction Escalation occur if one of the Databases is READ ONLY?
We are doing an import process from a source database to a destination database. We need to run these imports frequently in an automated fashion.
The source is on a separate server than the ...
