A set of interrelated operations that must all succeed in order for any of them to succeed. Failure of any operation results in a rollback of all operations in the transaction.
1
vote
0answers
7 views
Rollback Groovy Transaction on checked exception
I am just upgrading Groovy versions from 1.76 to 2.1 on a project, and I have a unit test as follows:
try{
sql.withTransaction{
sql.execute("Update table set name='tested' where id = 1")
...
0
votes
1answer
15 views
Hibernate Session is closed in spring transaction after calling method second time
First of all I am a beginner in spring.I have created a simple Spring service that has DAO injected and transaction is managed by HibernateTransactionManager of spring, like as below.(And transaction ...
0
votes
2answers
57 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
12 views
MySQL, linking data, constructing keys, insert into and update
I have information relevant to specific groups of a table A. So I sort out these relevant groups and make an entry containing the group-specific information in a second table B. Up to this point no ...
0
votes
0answers
10 views
ZombieCheck Exception - This SqlTransaction has completed; it is no longer usable — during simple commit
I have the following code which performs a commit of a single row to a database table (SQL 2008 / .NET 4)
using (var db = new MyDbDataContext(_dbConnectionString))
{
Action action = new Action();
...
0
votes
0answers
14 views
How to make user managed transaction in jBoss
I'm using JBossV5 as my application server. It provides the connection for mysql and I'm using jdbc in my application. I want to manually commit transaction. I know it is not possible to use ...
0
votes
0answers
9 views
MySql transactions to be used ina web app to make group of correlated updates
So basically , i am working on a website which has a post,notifications system . So when someone posts the following happens ->
1) The posts table is updated
2) Depending on the subscribers list , ...
1
vote
0answers
7 views
two phase commit protocol with Transaction Manager
Suppose there are two resources in a single transactions. Two phase commit protocol is being used.During phase 1 both the resources acknowledge that they are ready.Now in phase 2 the first resource ...
1
vote
1answer
20 views
Spring recommendations: proxying mechanism vs @Transactional on class or interface
Spring doc has the two recommendations:
Spring recommends that you only annotate concrete classes (and methods
of concrete classes) with the @Transactional annotation, as opposed to
annotating ...
2
votes
1answer
15 views
Spring @Transactional class vs method precedence rules
Spring says abuot @Transactional
The most derived location takes precedence when evaluating the transactional settings for a method.
Does this mean the annotation on method completely overrides ...
0
votes
0answers
7 views
SQL DB Redesign for Retail POS - High volume transactions & Batch Processing
We are in the midst of getting out POS backend DB redesigned to support growth. Currently, our POS transactions are passed through to DB via a Web Service.
I understand that hardware scaling up is ...
0
votes
1answer
18 views
UnitOfWork - Real Transaction
I would expose you somethings about "real transaction" and "pseudo transaction".
I think that Entity Framework implements a pseudo transaction and I'll tell you why.
// Partial Code
// *** ...
0
votes
2answers
29 views
Wanted [ Example of SQL transactions ] [closed]
I am fairly new to SQL. Currently I am trying to understand transactions and I am getting pretty lost. So I would like if you could just show me few examples of SQL transactions.
What I think I have ...
0
votes
0answers
18 views
PHP + ORACLE - Managing transactions
I have script1.php and its code looks like below
$con = oci_pconnect(connection_details);
if(!$con){
//throw error;
}
$q1 = "SOME INSERT STATEMENT on EMPLOYEE TABLE";
$stid = oci_parse($con, $q1);
...
0
votes
0answers
32 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 ...
0
votes
1answer
13 views
Transaction using TransactionScope is not rolled back in a multithreaded execution path
I have the following code:
Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task
...
1
vote
0answers
21 views
Getting Django to rollback the default open transaction instead of committing
I'm managing the transactions for all my data-modifying tasks myself, adding things like retries on deadlocks, lock timeouts, etc.
I don't want any code (accidentally or not) from being able to edit ...
1
vote
4answers
55 views
Correct/Ideal way to manage SQL Connections and Transactions - C#
I have a C# application that makes many SQL calls across multiple functions and classes. The database is SQL Server 2008 R2. Currently each class or function will open it's own SQL connection whenever ...
-2
votes
0answers
23 views
@Transactional annotation - no transaction
I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
0
votes
1answer
40 views
Creating multiple transactions in a single hibernate session
I have created a Quartz Job which runs in background in my JBoss server and is responsible for updating some statistical data at regular interval (coupled with some database flags)
To load and ...
0
votes
1answer
9 views
PHP PDO transaction automatic rollBack
I am just refining some code on one of my applications which I converted from using PHP ADODB library to PDO lately. In adodb once you launched a transaction it automatically rolled back if any ...
0
votes
1answer
17 views
Destroy dependent objects in Rails using one transaction
Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
0
votes
0answers
7 views
Transactions for DML operations inside multiple If statements
I'm writing a complex stored procudere with a lot of IF statements, inside of each IF statement is an Update, Delete or Insert Operation. Example:
CREATE PROC Proc1
@Var1 INT,
@Var2 INT,
@Var3 INT
AS
...
0
votes
0answers
14 views
Joining two transactions spring bitronix
We use this bitronix.tm.resource.jdbc.PoolingDataSource with OracleXADataSouce, with our typical spring application context looking like this
<bean id="bitronixTransaction" ...
1
vote
0answers
10 views
Weblogic Transaction Behavior
I'm working on an older EJB 2 application.
In the ejb-jar.xml, I see:
<container-transaction>
<method><ejb-name><method-name>someMethod...
...
0
votes
0answers
30 views
MySQL Rows inserted just disappear
Here is the scenario:
UPDATED
Thanks to anakata for pointing out table locks and problems with overlapping sessions.
Start Transaction
Run a bunch of queries, these 2 in particular (private data ...
-1
votes
1answer
25 views
PDO Prepare with bindParam doesn't work
PHP 5.4.7 in xampp installation, MySQL 5.5.27 - I have struggled all day to get various UPDATE statements to work, to no avail. Have read through and tried examples from ...
-2
votes
1answer
22 views
Savepoint in database
I am researching on transaction savepoint in databases but what I am not getting is what exactly is the information which is saved during savepoint. It has to be little bulky since it will be used to ...
0
votes
0answers
14 views
MySQL/node.js transactions within a stored procedure intermix
I am using a single MySQL client for multiple HTTP requests in node.js. So if I run transactions the queries could probably intermix. For example the first page request runs a transaction on the MySQL ...
0
votes
1answer
35 views
Why rolling back transation in SQL Server increases seed values
I am doing some initial development in SQL Server 2008 version and because it was test script I had script the queries in transaction to not affect the database tables actually.
But it seems the ...
3
votes
1answer
63 views
ORA-14552: cannot perform a DDL, commit or rollback inside a query or DML
We have some Web Services deployed in Oracle WebLogic Servers, and the main responsability of this services is to invoke Stored Procedures and sent this data to the clients. The technology stack of ...
1
vote
0answers
25 views
EntityFramework TransactionScope results in error if there's a call to asp.net security within its scope
I want to wrap some Entity Framework db I/o within a TransactionScope. In general it's working fine. But: I have some case that are basically like this:
using (var tx=new TransactionScope())
{
...
4
votes
1answer
55 views
How to enforce creating new transaction in Lift Mapper?
We are using Lift + Mapper (version 2.4) in our project. We as well are using transaction-per-request pattern S.addAround(DB.buildLoanWrapper()).
In one of our requests we need to have nested ...
0
votes
2answers
40 views
beginTransaction(), endTransaction(), and setTransactionSuccessful(). What do they exactly provide?
I have to provide synchronization when inserting, querying, updating and deleting items from a database. As far as I understand beginTransaction() and beginTransactionNonExclusive() are the methods I ...
0
votes
1answer
29 views
If a MySQL/InnoDB 'lock wait timeout' happens, is the lock given anyway when it's free?
We have a high performance Django web application that makes use of MySQL's InnoDB's row level locking. At a point in our code we see (in process A) if a particular row in a table is available by ...
0
votes
0answers
33 views
Hibernate / Spring transaction issue with Infinispan L2 cache
I am trying to use Infinispan as Hibernate L2 cache for an application which use technologies like Tomcat 6, Hibernate 4 and Spring 3.5. The application running in Tomcat and our current transaction ...
0
votes
1answer
42 views
Migrate Hibernate managed C3P0 Pool to Spring Managed
I'm Spring(yfying) my application that uses Hibernate + C3P0 for the connection pool. I'm using a managed hibernate context for specific reasons. I'm using a utility class "HibernateUtil" for ...
1
vote
1answer
13 views
Clarification regarding journal_size_limit in SQLite
If I set journal_size_limit = 67110000 (64 MiB) will I be able to:
work with / commit transactions over that value (somewhat unlikely)
be able to successfully perform a VACUUM (even if the database ...
0
votes
0answers
23 views
Transactions and Entity Framework Pattern for Large Loads?
.NET 4.5/VS2012.
I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called
almost exclusively via stored procedures, wrapped by EF. The ...
1
vote
0answers
30 views
share transaction among several connections
I wonder is it possible to share single database transaction among several physical connections?
This question is caused by curiosity rather than real task. However I encountered a problem which I ...
0
votes
1answer
48 views
Mysql commit sometimes takes minutes to finish
Ive been having this problem for over 1 week now. Ive allready gone though the similar problems other people had here on stackoverflow. Im running Mysql 5.6.10.
"query end" step very long ...
0
votes
0answers
10 views
Getting a transaction is indoubt exceptions
I have the following stack trace:
at
System.Transactions.TransactionStateInDoubt.EndCommit(InternalTransaction
tx) at System.Transactions.CommittableTransaction.Commit() at
...
0
votes
0answers
9 views
EF4 transactions - execute arbitrary SQL on same connection without invoking DTC?
I'm writing a custom database schema/data updating engine, and I want to:
1) Start transaction
2) Execute my arbitrary SQL on a DbConnection
3) Execute entity changes via a DbContext then call ...
0
votes
1answer
29 views
PHP and MySQLi check if in transaction
Is there any way to get if currently I'm inside of any transaction? For example: get if MySqli::autocommit is 'on' or 'off'?
Need this because my project is using memcache, which should only be ...
0
votes
1answer
52 views
Hibernate & Spring 3 not saving
I am using hibernate 3 and spring 3.0.7, I am trying to get my code to save an entity to the database but it just won't do it.
I have tried everything with it but it seems like there is something I ...
1
vote
1answer
29 views
mysql and php PDO - what happens to an uncommited transaction if connection closes unexpectedly?
I'm aware of this question but this question is different since the DBMS is different.
I'm developing something so, if some error is encountered, whole script terminates, sometimes while in a ...
1
vote
1answer
83 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 ...
1
vote
1answer
43 views
Transaction test mode in CodeIgniter
I saw in the docs about CodeIgniter:
"you can optionally put the transaction system into "test mode", which
will cause your queries to be rolled back -- even if the queries
produce a valid ...
0
votes
1answer
20 views
SQLite transactionscope performance issue
I'm using ANTS performance profiler to search for performance issues within my application.
I'm getting a high CPU percentage at using a transaction scope like the following:
This method is only ...
0
votes
1answer
58 views
spring hibernate transaction could not commit
I wrote dao in spring as i used to write in struts some think like this
@Autowired
private SessionFactory sessionFactory;
Session session=null;
Transaction tx=null;
List<Login> ...




