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.
0
votes
1answer
60 views
mercurial abort: Input/output error,transaction abort! rollback completed
i am trying to pull from a repository in bitbucket.
i am giving
bash-4.1$ hg pull https://sat801@bitbucket.org/golmschenk/i4330-notification
but it shows like this
pulling from ...
2
votes
1answer
70 views
Why doesn't my GORM object save to the database?
Consider the following code:
if (!serpKeyword) {
serpKeyword = new SerpKeyword(
keyword: searchKeyword,
geoKeyword: geoKeyword,
concatenation: concatenation,
...
0
votes
1answer
46 views
how DB2 transaction works exactly in concurrent situation
here are 2 tables employee(empID int,empName varchar,age int) and salary(salID,empID,...).
insert into employee
select ...
where not exists (select 1 from employee where empID = :employeeID)
insert ...
0
votes
1answer
64 views
Spring test does not roll back after test
I have a series of integration tests using Spring tests and a H2 memory database. I've noticed that the h2 database does not get rolled back after every test.
This is my config:
...
1
vote
0answers
105 views
Test jdbcTemplate.batchUpdate with rollback by default
I'm trying to test my dao, that uses jdbcTemplate.batchUpdate method under the hood.
My tests are run against real datasource and all methods are performed in transactions marked as rollback-only ...
0
votes
1answer
157 views
Spring 3.2: @WebAppConfiguration breaks existing @Transactional tests
Greetings.
I have a Roo generated web app. I want to test my controller. So am using spring-test-3.2.
Using STS 3.2.
Embedded Derby for testing.
The test suite fails when the controller test ...
0
votes
0answers
58 views
Magento Multiple Transactions Per Order SagePay
I've asked this question to the folks over at Ebizmarts, but their solution is to pay for their pro extension and use DEFERRED payments :(
Using
Magento CE 1.7.0.2 and the free Ebizmarts SagePay ...
1
vote
1answer
55 views
Spring hibernate insert race condition
I am currently having a race issue with Spring Hibernate (transaction by annotation on service and daoImpl classes). Here is what I have encountered:
Tables:
Device Type: id (serial), name
Device: ...
1
vote
1answer
79 views
php mysql - does mysql auto lock rows when updating?
I'm new to php development and I want to create a php-mysql web-app. In this app I have the case where it is possible that at the same time I might have one "UPDATE" statement and one "SELECT" query ...
1
vote
1answer
83 views
PostgreSQL - DB user should only be allowed to call functions
Currently I'm using PostgreSQL for my application. Since I am trying to put every SQL that contains a transaction (i.e. insert, update, delete) in a function, I stumbled upon this problem:
Is it ...
1
vote
0answers
38 views
CDI event originator's transaction waits for Observer(AFTER_SUCCESS) transaction?
I have the following scenario: (pesudo-code)
CallerObject.method() {
SessionBean1.method1(); // through remote bean interface
// [1]
}
@TransactionAttribute(REQUIRED)
...
0
votes
0answers
8 views
A way to detect last transaction status in psql?
I am writing a psql script. The problem is as script gets longer, it becomes harder to find error. Especially, the operation is wrapped by a transaction.
So I want to stop execution of entire script ...
1
vote
0answers
47 views
JDBC constraint exception details
I'm using JDBC to persist data to SQL Server and want to insert a new row into table that has a primary key, several foreign keys, and several uniqueness constraints on various columns. I am wondering ...
0
votes
2answers
54 views
Grails transaction never completes
Consider the code below, that tries to create a new SerpKeyword within a transaction and prints to the console to show where it is.
if (!serpKeyword) {
println "I DIDN'T FIND THE ...
0
votes
1answer
57 views
Is there anyway to get the primary key before a TRANSACTION is submitted?
Actually I am think of a scenario like this:
Let's say we are managing a library which stores many books.
Our web application for the library allows user to add books to shelf.
The database has two ...
1
vote
2answers
113 views
How do I prevent exceptions from causing a transaction rollback under Grails?
My Grails service is having an issue where a swallowed exception unrelated to a transaction is causing the transaction to rollback even when it is unrelated to the persistance of the domain object.
...
0
votes
1answer
43 views
PHP transaction not rolling back
I have some PHP code that reads a spreadsheet using PHPExcel and imports the data into a MySQL database. (innoDB) If the import encounters a duplicate record in the database it's supposed to fail and ...
1
vote
0answers
24 views
Why web services cannot participate in Java EE transactions?
I'm trying to understand why a web service cannot be a part of a Java EE transaction like a db operation.
I.e from inside an EJB if I make a DB update and a web service call, there is no way to bind ...
0
votes
1answer
49 views
Declarative transaction management in EJB
I know that the questions which refer to a link are not the favorite ones to the users of this great site, but I could not set my question in a different way. I am trying to delve into EJB and CDI and ...
0
votes
1answer
74 views
Implementing Spring ChainedTransactionManager according to the “best efforts 1PC” pattern
The best effort 1PC is nicely described in this post. The author, David Syer, who works for SpringSource, provided an implementation of a ChainedTransactionManager extending the Spring ...
0
votes
2answers
57 views
Multiple DDL queries on a single table in a single transaction
Can I rely on SQL Server (and SQL Server Compact) to do multiple ALTER TABLE queries on a single table in one go, instead of applying changes sequentally, if all queries are within a single ...
0
votes
2answers
46 views
Using EJB transaction, when I insert a record in a main outer transaction, I can't find it in the inner transaction(Annotated by REQUIRES_NEW)
My goal is inserting a record into my database, then updating it in a new transaction.
I try it like this:
@PersistenceContext(unitName="Table")
private EntityManager manager;
@EJB
private ...
0
votes
1answer
51 views
BeginTransaction Hibernate necessary?
Is it really necessary to start a transaction when you are going to execute only one query, without deleting or updating data?
I'm currently using Hibernate 4.1.9 with C3p0
Example,
session ...
1
vote
2answers
61 views
Inserting Multiple Records at a time into Model [duplicate]
I am looking for some best practices when it comes to inserting data into a model, especially when there are a lot of records to be created, so far I am retrieving some XML and saving it into a model
...
1
vote
1answer
54 views
transaction not rolling back - scope issue?
I'm having a hard time understanding why I can't get this transaction to roll back. I have a DataAccess object that handles the connection/transaction. I have a MailingData business object, and a ...
1
vote
0answers
54 views
Joomla photogallery component shows which user bought which photo after payment with PayPal. Skipping PayPal possible?
Right now I'm building a Joomla-website for a photographer. A component out there that offers the best options on lay-out and settings to do so is called DatsoGallery. The gallery offers you to create ...
2
votes
1answer
83 views
Why does this SQL Server Transaction Commit even though an Update Statement Fails [duplicate]
I have this transaction:
BEGIN TRAN;
Update Job set JobTitle = 'wonderfullivin' where JobId = 1271;
Update Job set LastTransactionDate = null where JobId = 1271;
COMMIT;
In which the second ...
2
votes
2answers
110 views
Threading issues with Hibernate
I'm experiencing a strange behaviour with Hibernate. I've been banging my head against the wall for a while now, and will award any answer which leads to a solution with a +100 bounty.
I have a ...
0
votes
1answer
33 views
Objectify - does transaction throw ConcurrentModException in case of simultaneous creation of an entity?
Does Objectify throw a ConcurrentModificationException in case an entity with the same key (without a parent) is created at the same time (when before it did not exist) in two different transactions? ...
0
votes
2answers
319 views
Spring Transaction propagation REQUIRED, REQUIRES_NEW
in following code method doService1() update correct sql but doService2() sql has some issue , but when i call doService() it has to commit the doService1() update to DB even though the doService2() ...
1
vote
2answers
79 views
SQL Server transaction, where is uncommitted data held?
My question relates to how are transactions dealt with in SQL Server.
Lets say I have a user defined transaction that contains a lot of data, where does that data get stored during that process? Its ...
0
votes
1answer
45 views
using transaction in a loop in yii
I have an array of active records and want to change some field of them with a loop in this manner :
$error = false;
foreach ($items as $item) {
$item->is_paid = ...
0
votes
2answers
59 views
PDO MySQL Transactions
I have 3 queries regarding PDO and Transactions.
I'm pretty new at transactions, so please understand my misunderstandings!
First, i'll explain the situation:
I have created a PDO wrapper in a ...
0
votes
0answers
11 views
can i persist an entity (i.e do a DB write operation) inside my nullSafeSet method
can i persist an entity (i.e do a DB write operation) inside my nullSafeSet method a Hibernate UserType. The autocommit is set to false, and i nee dto achieve this in a user defined transaction.
0
votes
2answers
148 views
spring hibernate manual commit
can somebody help for this?
currently i met some problems, i am using spring,jpa,hibernate.
here is the problem, when i try to save several objects, and then manually roll back as when solrj return ...
0
votes
0answers
76 views
SQL Query SELECT Max, Min and Most recent Transaction (second to Last)
What SQL select query (SQL Server 2008) would help me obtain the MAX, MIN, AVG and LAST price for each corrensponding line item of a given Purchase Order (PO)?
However, the calculations of MAX, MIN, ...
0
votes
0answers
50 views
Is there any in-built mechanism to QUEUE the SQL Queries, rather than using NOWAIT or SET LOCKTIMEOUT
Suppose I have a Transaction running, at the same time I want to execute some set of SQL Queries (SELECT) in another connection.
I can do this using SET LOCKTIMEOUT, but for this I have to give a ...
1
vote
0answers
21 views
Serialized transaction doesn't seem to abort?
I'm experimenting with serialized transactions, for example:
public static void Main()
{
MemoryStream stream = new MemoryStream();
BinaryFormatter formatter = new BinaryFormatter();
...
0
votes
0answers
51 views
SSIS: Enabling transactions causes database connection to fail
I have a package that I'm using to load records from a CSV file into a table. It has three elements in the control flow:
Truncate table
Load File into Table
Verify that there are records on the ...
0
votes
2answers
141 views
Hibernate Error - Already have an associated managed connection
I'm randomly receiving this hibernate error, I can't reproduce it.
Already have an associated managed connection
and the stack trace as follows ...
INFO | jvm 1 | 2013/03/31 18:16:20 | ...
1
vote
1answer
402 views
Strange behaviour with @Transactional(propagation=Propagation.REQUIRES_NEW)
Here is my problem :
I'm running a batch on a Java EE/Spring/Hibernate application. This batch calls a method1. This method calls a method2 which can throw UserException (a class extending ...
2
votes
1answer
71 views
MYSQL If statement in transaction causing error
I have the following MYSQL query:
START TRANSACTION;
SELECT sport_id INTO @a FROM sports WHERE sport_id = 2 FOR UPDATE;
UPDATE sports SET sport_name = 'Table Tennis' WHERE sport_id = @a;
if (@a ...
0
votes
1answer
107 views
Using transaction in SQLite giving error in JellyBean
I have a DownLoadData class which extends async task, used for downloading master data from a web service. 10 masters tables are there in the SQLite database and each require seperate web service ...
1
vote
0answers
212 views
Node.js mysql transaction
Can anyone provide an example of how I could achieve MySQL transactions in Node.js. I am trying to get my head around using the node-mysql driver and node-mysql-queue.
As far are I can tell, using ...
2
votes
0answers
66 views
Camel Transaction Configuration Issue: javax.persistence.TransactionRequiredException
I'm configuring JMS Transactions in Camel 2.10.4 routes. When I run my app, a javax.persistence.TransactionRequiredException: no transaction in progress is thrown. From my research, I found out that ...
0
votes
2answers
104 views
Transaction required exception on execute update for JPQL update query
I get this error when I try to run this code.
Error:
javax.persistence.TransactionRequiredException: executeUpdate is not supported for a Query object obtained through non-transactional access of a ...
0
votes
1answer
203 views
TransactionRequiredException: no transaction is in progress JPA 2 with JpaRepository
I want to use JPA with Spring data.
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
201 views
lock table after BeginTransaction MySql Transaction in c#.net
How do i restrict other users to update or insert in a table after a certain transaction has begun ?
I tried this :
MySqlConnection con = new ...
0
votes
2answers
31 views
Is SQL “inherently transactional”?
I just read in Wikipedia, that SQL is inherently transactional.
I took this to mean that every statement made to a SQL DBMS is treated as a transaction by default. Is this correct?
An example I can ...
0
votes
1answer
165 views
Transactions and Continuation tokens in Windows Azure Storage Tables
How many transactions are fired for retrieving 1200 entities in Azure Storage Tables, keeping continuation Tokens in mind.
I have read that " Windows Azure Tables returns up to a maximum of 1000 ...

