Tagged Questions
The nested-transactions tag has no wiki summary.
8
votes
4answers
2k views
5
votes
1answer
578 views
Real-world uses of MySQL savepoints in web services?
Does anyone have experience they can share using MySQL savepoints (directly or via an ORM), especially in a non-trivial web service? Where have you actually used them? Are they reliable enough ...
3
votes
3answers
40 views
What's the case that requires nested transaction?
Even a transaction is nested, it won't be updated until outmost transaction commits. So what's the meaning of nested transaction and what's the specific situation that requires the feature?
3
votes
1answer
1k views
Rails 3. Nested transactions. Exception in a child block
Why doesn't ActiveRecord rollback changes in nested transactions after exception was risen in a child block?
Here's examples:
1.
>> Client.transaction do
?> Client.create(:name => 'Pavel')
>> ...
1
vote
1answer
46 views
SQL Try/Catch logic with nested transactions
The following sproc is implemented in accord with the template in this article: Exception handling and nested transactions. This sproc is supposed to handle deadlocks and it is called by another sproc ...
1
vote
1answer
1k views
How do i enable nested transactions
I have a similar question of how to check if you are in a transaction. Instead of checking how do i allow nested transactions?
I am using Microsoft SQL File Database with ADO.NET. I seen examples ...
1
vote
1answer
80 views
.NET Data Providers - How do I determine what they can do?
I have code which could be executed using a Provider that doesn't support transactions, or doesn't support nested transactions.
How would I programmatically determine such support?
E.g. The code ...
1
vote
3answers
870 views
SQL Server 2005: Why Name Transactions?
I've been sorting out the whole nested transaction thing in SQL server, and I've gleamed these nuggets of understanding of behavior of nested trans':
When nesting transactions, only the
outermost ...
0
votes
0answers
11 views
Graph database which support full ACID with true nested transactions?
Is there graph-database which support full ACID with true nested transactions?
I'm not considering SQL RDBMS unless there's no option.
0
votes
1answer
42 views
Nested UI requiring nested transactions in ActiveRecord
I have a dialog D1 which edits model type M1, and another dialog D2 which edits model type M2. One of the things that M2 contains is a reference to an M1, and so as a convenience to the user D2 ...
0
votes
2answers
255 views
What to do when neither TransactionScope nor nested transactions are supported?
TransactionScope is an amazing feature but too few providers do implement it correctly.
I don't want to pass the connection as parameter.
0
votes
2answers
333 views
nhibernate and nested transactions
I know that nhibernate doesnt support nested transactions.
Let's say that I got something like this:
UserService.BeginTransaction (on current session)
UserService.Save
UserService->FeedService
...
0
votes
2answers
1k views
Achieving NHibernate Nested Transactions Behavior
I'm trying to achieve some kind of nested transaction behavior using NHibernate's transaction control and FlushMode options, but things got a little bit confusing after too much reading, so any ...