0
votes
1answer
13 views

Transaction using TransactionScope is not rolled back in a multithreaded execution path

I have the following code: Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task ...
0
votes
0answers
25 views

Transactions and Entity Framework Pattern for Large Loads?

.NET 4.5/VS2012. I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called almost exclusively via stored procedures, wrapped by EF. The ...
0
votes
0answers
10 views

Getting a transaction is indoubt exceptions

I have the following stack trace: at System.Transactions.TransactionStateInDoubt.EndCommit(InternalTransaction tx) at System.Transactions.CommittableTransaction.Commit() at ...
0
votes
1answer
65 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 ...
0
votes
2answers
60 views

maxTimeout value from Machine.Config is not picked up by C# winform app

I have been working on a winform app with Oracle 10g database which is using TransactionScope and wanted to modify the maxTimeOut value specified in machine.config file, my machine.config file is in ...
0
votes
0answers
118 views

The underlying provider failed on EnlistTransaction; Cannot access a disposed object

Please see the following exception and stacktrace which appears to indicate I'm attempting to enlist in a disposed transaction: System.Data.EntityException: The underlying provider failed on ...
1
vote
0answers
21 views

Serialized transaction doesn't seem to abort?

I'm experimenting with serialized transactions, for example: public static void Main() { MemoryStream stream = new MemoryStream(); BinaryFormatter formatter = new BinaryFormatter(); ...
1
vote
0answers
84 views

Multiple NHibernate Transactions in TransactionScope

I have legacy dll which uses multiple NHibernate transactions in one method. My task is to make this method act as one transaction, so I think TransactionScope should help me. However, when I made ...
0
votes
0answers
27 views

How to run Specflow Scenario as Transaction ?

I use Selenium WebDriver for testing UI in my MVC 3 application. it is possible to run each scenario as TRANSACTION ??? meybe can helps beforeScenario (BEGIN) and afterScenario (ROLLBACK) but I ...
0
votes
1answer
104 views

Commiting inner transaction scope, while rolling back the outer transaction scope

I am trying to do the following in a highly concurrent system written in C#. Aquire row-lock on a data-item in transaction scope Do a lot of db-interaction if anyhing goes wrong Update locked ...
0
votes
3answers
103 views

What does a TransactionScope really do

Looking into it I verified that for example the value o "myInt" is not rolledback in the following scenario int myInt = 10; using (TransactionScope scope = new ...
1
vote
1answer
33 views

Cannot access Transaction in method

I've created an implicit transaction like so: Using ts As New TransactionScope(TransactionScopeOption.Required, New TimeSpan(1, 0, 0, 0)) MethodA() ts.Complete() End Using MethodA() in turn calls ...
6
votes
2answers
216 views

How can I create safe per-web-request transaction in .net's MVC?

I need to be all my entire application transactional in its every web request it processes. I need the transaction to start and, if there was no exceptions in controllers, commit it. Otherwise, ...
0
votes
1answer
52 views

Workflow Foundation and DTC transaction Rollback misbehavior

I'm testing the receive transaction scope in workflow foundation 4.5 and i think that there's something wrong with it! See when I roolback a transaction either by explicit roolback: using ...
3
votes
1answer
187 views

Change the TransactionScope IsolationLevel after completing the transaction

When i save data in the database i used TransactionScope with IsolationLevel set to Serializable. TransactionOptions options = new TransactionOptions { ...
0
votes
1answer
43 views

Is it possible to step outside of the current TransactionScope and insert data

Consider the following: using (var outerScope = new TransactionScope()) { InsertDataInTableOne(); InsertDataInTableTwo(); InsertDataInTableThree(); outerScope.Complete(); } Now I ...
0
votes
2answers
88 views

Flowing transaction to Workflow Foundation 4.5

i have this very simple workflow: As you all can see it consist of a receive a simple assign and a sendresponse, all in a receive transaction scope. Now on the consumer side i have this simple ...
1
vote
0answers
150 views

howto use transactions in SQLite with C# and System.Data.SQLite library?

I am using the System.Data.SQLite library (version 1.0.83.0) and C# 4.0 to use a SQLite database. I would like to use a transaction and I am trying to do the following: using (var scope = new ...
1
vote
1answer
81 views

Read old data from the table, while some transaction is writing to the same table

What I want is being able to read old data from the table, while some transaction is writing to the same table. When such atomic writing is completed, I want to replace the old data with the new one. ...
0
votes
1answer
73 views

Transactional operations simultaneously mixed with non-transactional ones

I need to perform data import from external source to my database. Because there is a lot of data to download, the import is executing for a long time and I need to persist periodic updates about ...
0
votes
0answers
118 views

Transaction Scope with Access Database

I am using Access Database with c# windows application. My application uses different methods to update different tables of database. I want to make my code block transactional but access do not ...
0
votes
3answers
306 views

Can we Call Two diiferent methods in Transaction scope in asp.net?

Hello i am new to Transaction Scope in C#. i have two insert queries one belongs to UserAccountCreation where LoginCredentials are stored and another is Inserting Employee details with respective ...
0
votes
2answers
116 views

TransactionScope doesn't roll back while the nth insertion doesn't occur

I have a problem which make me turn around for 3 days. I'm using transaction scope in this transactioscope I insert say 5 values in 5 tables. The insertion goes correctly for the first 3 tables and ...
1
vote
2answers
336 views

Check if an existing transactionscope is active

I am using: public class TransactionUtils { public static TransactionScope CreateTransactionScope() { var TransactionOptions = new TransactionOptions(); ...
1
vote
0answers
75 views

How i Use the transaction for operation of DB and File IO?

Preface I have a table that contains information about the user, that One of the it fields is AvatarUrl that consist of user uploaded avatar url. I Need to Transaction to Track Change in DataBase ...
0
votes
1answer
226 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) ...
1
vote
1answer
263 views

TransactionScope promoting to MSDTC although I am using the same connection string

I have two repositories that point to the same SQL Server 2008 R2 (10.50.2550.0) database. One repository is based on Entity Framework, the other uses regular SqlConnection. I need to perform an ...
0
votes
2answers
363 views

Calling WCF service method from transaction scope

I have code like: using (TransactionScope scope = TransactionScopeFactory.CreateTransactionScope()) { *// some methodes calls for which scope is needed* ... ... ...
0
votes
0answers
94 views

Transactions in Entity Framework: How can I improve it my code?

I have there methods: ReserveOrder(id), AcceptOrder(id), CancelOrder(id) Each of it runs transaction which: Selects order by id and checks is it in good state. Additional selects from other tables ...
0
votes
2answers
139 views

Update selected rows within transaction

I have an automation project having a remote database (MsSql) and multiple windows/web clients. Client applications check and select a suitable row on a table and mark it as reserved for operating on ...
2
votes
2answers
95 views

Is it possible to override a hardcoded transaction timeout in configuration?

At one point in our software, a hardcoded (meaning in C# code in a Workflow) transactiontimeout has been implemented in a transactionscope. Is there any way to override (increase!) the setting without ...
0
votes
1answer
419 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 ...
0
votes
0answers
144 views

Entity Framework 4 SQL Server CE4.0 Transactions

I am using EF4.4 Code First (+ repository pattern) and SQL Server CE 4.0. I face issue with Transactions. var scope = new TransactionScope( TransactionScopeOption.RequiresNew, ...
3
votes
3answers
107 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 ...
0
votes
1answer
114 views

Read committed, no locks. Screwed up

I have a weird problem from production systems. I have readCommitted transaction defined with read operation with no_lock and write operation with table lock in the same scope. However, multiple ...
2
votes
1answer
211 views

Best way to handle transactions dealing with stored procedures, Entity Framework within WCF?

Here's the big picture: Within our new SOA based information system, we need to build several WCF services. Those services' main goal will be to handle business transactions. Let's have an example: ...
0
votes
1answer
173 views

What is the difference between System.Transaction and System.Data.Common.DbTransaction?

I use Linq-to-Entity (EF 4.0) in my project. I want to use transactions in My Code. i found two way to use transactions in my code. What is the difference between System.Transaction and ...
0
votes
2answers
1k views

Transaction scope timeout on 10 minutes

I have a long running transactionscope in c#. I told the scope that it should have a long timespan, but still I get a timeout. What could cause this? TransactionOptions transactionOptions = new ...
4
votes
1answer
1k views

Unit Of Work Pattern with Database Transactions

I've been tried to get my head around this for a couple of days and there are lots of tutorials around unit of work and around TransactionScope but I can't find anything that talks about the two ...
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 ...
2
votes
1answer
307 views

Transaction for different databases

I use 2 different dlls to connect to 2 database in my project . each dll has it's own DAL layer . now in a page I need to insert a set of related data into these 2 databases . I want to use ...
1
vote
2answers
833 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
73 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
242 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
4answers
616 views

How does all code inside TransactionScope block not really executed until scope is committed or rollbacked?

I've read about TransactionScope and this article, but I still don't understand 2 things: When SqlCommand.ExecuteNonQuery is executed it doesn't really executed until scope.Complete() is invoked? If ...
0
votes
2answers
102 views

Duplicate inserts

I'm having following issue with duplicated inserts in case of concurrent requests. I have two tables: create table tbl ( val varchar2(1000) ); create table tbl2 ( val varchar2(1000) ); I need ...
0
votes
1answer
266 views

Does TransactionScope makes a cross process lock on the database in LinQ queries?

I got several applications run onto the one machine, also with an MSSQL server on that machine. Applications are various typed, like WPF, WCF Service, MVC App and so on. All of them accessing the ...
4
votes
1answer
698 views

Ignore SqlTransaction.Commit within TransactionScope

We are in a process of gradually replacing legacy data access code by entity framework (4.3.1). In some occasions we can't avoid using both ways of data access in one unit of work. Ideally, this ...
0
votes
1answer
146 views

TransactionScope with Typed Dataset

Is it possible to use TransactionScope with a Typed Dataset? as in: using (var transaction = new TransactionScope()) { typedDataSet.DeleteStuff(id); typedDataSet2.DeleteSomeOtherStuff(id2); ...
0
votes
1answer
60 views

Selecting data from table in one connection from where records are getting deleted/updated in another connection in transaction

We have a ASP.NET web application which sends a request to a windows service to delete/update records in a number of tables. Windows service does this in a stored procedure and that call is in ADO.NET ...

1 2 3 4