Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
497 views

Can I substitute savepoints for starting new transactions in Oracle?

Right now the process that we're using for inserting sets of records is something like this: (and note that "set of records" means something like a person's record along with their addresses, phone ...
2
votes
2answers
301 views

ActiveRecord, MySQL, and nested transactions — what's the behavior?

Rails uses savepoints to achieve nested transactions with MySQL, and to my understanding, the semantics of this are identical to actual nested transactions, in terms of atomic data changes. Is this ...
2
votes
1answer
827 views

Using savepoints in python sqlite3

I'm attempting to use savepoints with the sqlite3 module built into python 2.6. Every time I try to release or rollback a savepoint, I always recieve an OperationalError: no such savepoint. What am ...
1
vote
0answers
163 views

Savepoint using Hibernate

The issue is i m using save or update in hibernate on temporary base... now when i finally fire update it will store it in DB permanently otherwise rollback it.. how to make save point using ...
1
vote
0answers
73 views

jdbc savepoint in batch mode with multiple tables

to simplify my question: I have got n objects that have to be inserted into x tables. Now I would like to have x prepared statements and interate though my objects. In every iteration I want to set a ...
1
vote
2answers
284 views

How do i set Savepoints for Linq to SQL and use “NO” ExecuteCommand?

TransactionScope TransactionABC = new TransactionScope(); try { context.Connection.Open(); { context.ExecuteCommand("insert into test (test) values (1)") ...
0
votes
1answer
60 views

Entity Framework and SQL Server Savepoints

I asked a different question about Nested Transactions and the answer to my question educated me enough to help me realize I was asking the question poorly. So here's a better question. How can I ...
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 ...