Tagged Questions
0
votes
1answer
67 views
Am I using this transaction correctly?
I read a list of VehicleMovementEvent objects, most of which are plain entrances to and exits from a parkade zone. These have an indicator of entrance or exit, and a date and time. I use this list to ...
0
votes
0answers
35 views
Using two contexts in one Transaction and error with DTC
In one transation I use two different contexts:
using (TransactionScope scope = new TransactionScope())
{
using (Entities1 context = new Entities1())
{
....
}
using (Entities2 ...
1
vote
1answer
85 views
How to use DataAdapter with SqlTransaction in C#?
I need to create 2 buttons, one for starting a transaction (startButton) and one for committing a transaction (commitButton).
I got stuck trying to implement it for the SELECT command.
When I press ...
0
votes
0answers
23 views
Raven DB session mangement
I have implemented a base class in my MVC project which always open a session from the DocumentStore OnActionExecuting on the OnActionExecuted result I'm just saving the changes to DB.
What I don't ...
0
votes
2answers
68 views
Creating atomic database and file system operation
I am working on an ASP.Net MVC 3 application using C# 4.0 and SQL Server 2008 R2.
I have a scenario where:
Several database rows are inserted into a SQL Server Database.
An xml file built from the ...
0
votes
0answers
40 views
.net soap web service transactions ios client
We had a web service created for use with our iOS application. The web service is .net/SOAP based. The service is some what reliable, but we are not always getting the entire data set when there is a ...
0
votes
0answers
114 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
...
0
votes
1answer
68 views
Entity Framework Transaction not rolling back
The following code is in a loop which executes many times. When I execute the following code it occasionally generates a foreign key exception, which is fine because it is handled and I attempt to ...
2
votes
2answers
55 views
Simple .NET transaction that doesn't have anything to do with database?
I have a .NET WinForms app. In it, I run 3 functions that do not do anything with a database. I simply want to roll back the actions of the functions if any fails.
So I'm looking for just a simple ...
1
vote
1answer
44 views
Nhibernate Reading/Saving Session Pattern, what is the exact transaction behaviour?
All,
This is the pattern used to read/write data using n-hibernate session:
using(var session = factory.OpenSession())
using(var tx = session.BeginTransaction())
{
// all the code that uses the ...
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 ...
0
votes
1answer
78 views
Sharing oracle transaction between Entity Framework and Oracle Client
I'm working with a legacy application that accesses an oracle database through System.Data.OracleClient using an OracleTransaction like so:
Public Sub ExecuteOracleSql(ByVal sql As String)
...
0
votes
1answer
106 views
Couchbase CRUD API
We're extending the .NET couchbase client to add some additional functionality (something analogous to transactions, or rather rollback) and one of the things on my radar is support for record ...
1
vote
0answers
40 views
TSQL / .net transaction handling LinqToClasses DataClassesDataContext
I am using T/SQL stored procedures to ensure that if data gets into the database the data has integrity. I use boilerplate code for the stored procedures to wrap up the stored procedure in a ...
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 ...
1
vote
1answer
53 views
SQLConnection doesn't implement IEnlistmentNotification
I am trying to understand how to ensure that a log entry is only entered onto the file system if a transaction is committed. Please see the code below.
Using (scope As TransactionScope = new ...
0
votes
0answers
19 views
Transaction.Current.TransactionInformation.CreationTime returns UTC time instead of local
A very strange error in our application narrowed down to the fact that Transaction.Current.TransactionInformation.CreationTime returns UTC time. The time zone of the database server and application ...
2
votes
1answer
233 views
OleDbTransaction RollBack does not work with FoxPro Data
I am using OleDb in a C# program that can work with either SQL or foxpro. I noticed that when I run statements in a transaction with foxpro data and then try calling RollBack it does not revert the ...
1
vote
2answers
72 views
Clarification on c# delegates / methods
I've used delegates in the past so I'm familiar with their use and benefits. I've also done a lot of reading/research, but I'm trying to wrap my head around this and getting nowhere. I'd like to use ...
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 ...
2
votes
1answer
135 views
TransactionScope commits updates without calling .Complete() but not inserts
I have a transacationScope that surrounds some functions. These functions each do database calls of either inserts or updates.
using (var ts = new TransactionScope(TransactionScopeOption.Required, ...
0
votes
0answers
117 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
2answers
115 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
92 views
Nested Transactions - MSDTC
I am having an issue setting up transactions in my application. When I perform a light weight transaction it works:
using (TransactionScope tx = new TransactionScope())
{
// Connect to Server 1 in ...
1
vote
1answer
63 views
Object Model Transactions
Okay, so the .NET Framework contains a TransactionScope that assist in enlisting in transactions for things like databases. However, I can't seem to find something that's simliar for object models.
I ...
0
votes
2answers
362 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*
...
...
...
2
votes
1answer
76 views
Reason for .Net Com+TransactionProxyException and how to solve it?
I have a .Net 2.0 windows service using Com+ that imports xml data into a database, and most of the times it works perfectly fine.
However, sometimes (rarely) I get a transaction proxy exception ...
2
votes
1answer
68 views
Why should I use transaction over MSDTC instead of System.Data.SqlClient.SqlTransaction?
Assuming I am using only one sql server database
Why would one choose transaction over MSDTC instead of SqlTransaction?
My feeling is there is some sort of "obviousness" choosing msdtc over ...
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
93 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 ...
1
vote
5answers
91 views
Should a transaction be used in my case?
Here is a quote " So, if you are working with only one object context then you have already built-in support for database transactions when using the ObjectContext.SaveChanges method." I found here ...
1
vote
1answer
1k views
Entity Framework and transaction isolation level
I'm using Entity Framework 4.0. Now I need to restrict access to a table while I'm reading from it or writing to it. Probably that's about transaction isolation level.
How do I do that?
Update
here ...
3
votes
2answers
652 views
How to dispose TransactionScope in cancelable async/await?
I'm trying to use the new async/await feature to asynchronously work with a DB. As some of the requests can be lengthy, I want to be able to cancel them. The issue I'm running into is that ...
0
votes
2answers
142 views
Transactional receive with timeout
I have a method that reads a list of messages from a message queue. The signature is:
IList<TMsg> Read<TMsg>(MessageQueue queue, int timeout, MessageQueueTransaction tx);
The basic ...
3
votes
2answers
234 views
TransactionScope elevating to MSDTC when sending between queues?
I have a simple process which reads from one queue, processes the messages, and outputs to another. I am trying to wrap this transfer within a TransactionScope, such that both the read from the input ...
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
2answers
77 views
distributed transaction .net java SAP
I use several systems connected by Service oriented architecture, those systems include : .NET technology, Java WebLogic Service, and SAP RFC.
is it possible to achieve distributed transaction across ...
1
vote
2answers
84 views
How should I handle these type of transactions?
I am saving user's uploaded file on the disk and just storing filename in database. I want to write a code such that if record is inserted and file is saved on disk then only it should commit. If ...
8
votes
2answers
168 views
Transaction in SOA
Is there any possibility to propagate transactions between different SOA services which are from different platforms like .NET or Java?
I know the transaction can flow in and out between WCF services ...
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 ...
1
vote
2answers
70 views
Will a DB procedure in a transaction still be rolled back from inside an ADO.net transaction?
Sorry, that was a hard question to word:
Say I have a stored procedure that does some inserting. It is wrapped in a transaction and commits, provided every goes well inside of that transaction.
Now, ...
1
vote
1answer
334 views
WCF/MSMQ and transacted batching - get messages in batch all at once, not sequentially
Alright, so I'm about 90% sure that this isn't possible, but I thought I'd ask anyway. Maybe I'm missing something.
I'm trying to use WCF over MSMQ with transacted batching. Long story short, I have ...
2
votes
3answers
697 views
Transactions with ASP.net WEB API
I understand that ASP.NET WEB API has been built to help implement lightweight REST based applications. However, i need my REST services to be transactional/be part of a transaction. I tried looking ...
1
vote
1answer
129 views
Does OleDbTransaction auto rollback?
Does OleDbTransaction auto rollback if I don't call commit before it gets disposed?
0
votes
1answer
142 views
TransactionScope class equivalent in Spring Framework?
What would be a somewhat equivalent class for TransactionScope(.Net) in Spring.
0
votes
3answers
509 views
How can I use Transaction in FILE OPERATIONS?
My program needs to treat some file operations as a unit, some of the important steps in a case are:
delete a file in a directory.
validate some data. if the data is invalid, roll back.
Upload a ...
0
votes
1answer
96 views
Submit several changes to Datacontext Entity Framework
I'm working on an application. Net using MVC3 and Entity Framework to access an SQL Server database.
I need to develop a view that lists the products in a table where the user can add, edit and delete ...
1
vote
2answers
142 views
EntityFramework 4.1 CodeFirst Monitor.Enter
I have a problem with EF 4.1. We found a performance issue in the project in one method, I started using dotTrace for resolving the issue, and I've found such strange behavior:
When application ...



