nested-transactions Questions

2

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 (ass...
Rabinowitz asked 26/2, 2009 at 18:46

1

I have a @Service class which has a @Transactional method that calls another @Transactional method on the another service. Something like that: @Service public class AService { @Autowired BServi...
Pulverulent asked 26/1, 2018 at 13:22

3

Solved

I have a stored procedure that needs to set a save point so that it can, under certain circumstances, undo everything it did and return an error code to the caller, or accept/commit it and return s...
Oligoclase asked 15/3, 2012 at 2:51

2

Solved

Does MySQL allow the use of nested transactions?
Maigre asked 20/8, 2009 at 15:14

2

Solved

I have never understood what a nested transaction is good for. Committing a nested transaction commits nothing - it just decreases @@TRANCOUNT. And ROLLBACK rolls back everything. BEGIN TRANSACTION...
Clarabelle asked 9/6, 2012 at 11:41

2

Solved

I am using: public class TransactionUtils { public static TransactionScope CreateTransactionScope() { var TransactionOptions = new TransactionOptions(); TransactionOptions.IsolationLevel = Sys...
Pussy asked 12/12, 2012 at 10:8

3

Solved

I have similar question to how to check if you are in a transaction. Instead of checking, how do I allow nested transactions? I am using Microsoft SQL Server Database with ADO.NET. I have seen exa...
Myself asked 18/5, 2010 at 11:34

3

Solved

Why aren't nested transactions supported by JTA? Is it because of the complexity of implementing them (which I doubt) or some design principle?
Hama asked 23/9, 2012 at 12:2

2

Solved

I just read the Transactions Chapter (10) of "Mastering EJB 3.0" and now I'm confused about nested transactions. The book says "The EJB-defined transaction manager does not support nested tra...
Dialectician asked 30/5, 2012 at 13:59

2

Solved

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 con...
Deraign asked 19/4, 2010 at 19:5

3

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...
Cestode asked 13/8, 2009 at 17:16
1

© 2022 - 2024 — McMap. All rights reserved.