savepoints Questions
2
I want to use savepoint feature inside a function in PostgreSQL. I read that savepoint cannot be used inside functions in Postgres.
But while I rollback, I want to rollback to a specific point be...
Desperado asked 7/3, 2017 at 2:8
2
Solved
Ora-01086 : save point was not established or invalid.
KRD_UPD_BORCTAHSILATYAP_SP this SP throws errors .
When I test this loop below, I get the error: ora-01086
Normally it works without calling...
Liven asked 15/1, 2014 at 13:23
3
We're trying to have a custom User model and behaviors, but then we noticed that even the default Django installation has issue when adding a new User via the Django Admin:
The issue happens ev...
Hiroko asked 10/7, 2017 at 3:21
2
I have generic jdbc code that works with all kinds of databases.
I have some apis that work with transactions and savepoints.
The problem is that some databases require you to release the savepoi...
Tallou asked 19/5, 2012 at 17:12
2
I'm using JavaEE/JPA managed transactions with Oracle DB und Hibernate and need to achieve some kind of nested transaction. As far as I've learned such thing is not supported out of the box but I s...
Rapacious asked 14/8, 2017 at 10:24
0
I am trying to understand Savepoints and Transactions in SQLite.
I had the following commands on a Table/Database and I am using Savepoints.
SAVEPOINT aaa;
RELEASE aaa;
BEGIN;
Now, if I execute ...
Burseraceous asked 27/7, 2016 at 20:26
2
Solved
I have a JDBC code where there are multiple Savepoints present; something like this:
1st insert statement
2nd insert statement
savepoint = conn.setSavepoint("S1");
1st insert statement
2nd update ...
Porringer asked 3/8, 2014 at 11:3
3
I have multiple updates and insert statements in a procedure.
Please refer below example:
Procedure Example
--code
Update 1
insert 1
Update 2
Update 3 --Suppose exception occurs
Now i want ...
Kneel asked 5/5, 2014 at 3:49
3
I have a JavaEE application using Hibernate to connect to the database. In some part of my application I have calls to method which have a @Transactional annotation. In some of these cases, I want ...
Seiter asked 25/11, 2013 at 16:58
2
Solved
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...
Evetteevey asked 10/1, 2010 at 6:53
1
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 hibe...
Zaller asked 6/7, 2011 at 10:13
1
Solved
My SQLite-based application currently uses transactions - both for being able to rollback and for improving performance. I'm considering replacing all transactions with savepoints. The reason is th...
Tanga asked 12/3, 2012 at 9:43
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
2
Solved
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, phon...
Mccourt asked 3/10, 2009 at 18:49
1
© 2022 - 2024 — McMap. All rights reserved.