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
0answers
3 views
PayPal NVP API Transaction Search parameters not working as expected
I have some queries related to the PayPal NVP API.
We have the TransactionSearch API, which lets us search for transactions.
Documentation for PayPal TransactionSearch API here
Now,
Suppose I set ...
0
votes
1answer
16 views
PDO Transaction: how to know which queries caused an error?
I'm using PDO inside a PHP script to do SQL queries. I want to do a transaction with more than one query and catch the errors. The code is like this:
try
{
$dbh = new PDO(...);
$dbh-> ...
0
votes
0answers
11 views
Difference between physical and logical transactions in spring
In this spring document
http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/transaction.html .It talks about physical and logical transactions.I have written a very ...
5
votes
3answers
2k views
How to start and end transaction in mysqli?
As far as I understood transaction starts once we call $mysqli->autocommit(FALSE); statement and ends after calling $mysqli->commit(); command like in the example below.
<?php
//Start ...
0
votes
0answers
7 views
Intergrating jBPM 5.4 with Spring-Hibernate for Transaction Management?
I have created a simple process using jBPM 5.4. I want to use transaction managment provided by the Spring-Hibernate.
What are the required changes and configurations for that ?
also
What is the step ...
0
votes
1answer
13 views
Should we bind parameters inside or outside of a SQLite transaction?
I am interested in using transactions for performance.
This is the process I'm currently doing:
* ~~~BEGIN TRANSACTION~~~
* Instance a command object and set the command text.
* Prepare command text ...
0
votes
1answer
20 views
Spring/Hibernate/Transaction synchronization issue
I have a service that returns a persisted Schedule object based on an input: date. I have multiple threads calling this method and I would like to ensure uniqueness. I don't want to catch a ...
0
votes
1answer
30 views
How can I get transaction rollbacked and object's initial state retored
I'm not sure if this is correct, but I need that after a transaction is rollbacked, my object returns the its initial state. I created a junit test and it's failing.
try {
...
1
vote
2answers
14 views
innodb rollback on timeout
I have a mysql 5.1 db running a stored proc with
START TRANSACTION
Insert some rows to table 1
Insert some rows to table 2
COMMIT
Calling this stored procedure ...
0
votes
0answers
14 views
Java thread blocked at com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore.createHierarchy
I run some load test in my Jboss application and when I launched JvisualVM to see what happen, I found a lot of blocked threads ( 150 over 400 threads ).
So I done a Thread dump and all of this ...
0
votes
0answers
19 views
What Jboss Transaction timeout is used for?
I have searched a lot to find the exact function of transaction*.xml files of Jboss but couldn't find any proper documentation/blog.
I want to know what Transaction-timeout property is used for?
Is ...
1
vote
1answer
27 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")
...
2
votes
2answers
35 views
Cancel previous operations in user defined function
Is it possible to cancel previous operations in a user defined function?
For example:
CREATE OR REPLACE FUNCTION transact_test () RETURNS BOOLEAN
AS $$
BEGIN
UPDATE table1 SET ...
...
0
votes
0answers
17 views
Ehcache simple search/transaction example?
I'm trying to test the capabilities of ehcache and I believe I have it set up properly in the cache initialization which I learnt from the code samples and elsewhere online. However I haven't added ...
1
vote
1answer
27 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 ...
0
votes
2answers
186 views
Transactions In MongoDB
I am using a NoSQL database MongoDB with Java and Spring Data. I am aware that MongoDB only supports transactions for a single document.
I am using Spring Transactions to carry out MongoDB ...
0
votes
1answer
67 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
1answer
42 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 ...
1
vote
2answers
39 views
How to prevent mysql implicit commit
The mysql documentation states that certain statements will cause an implicit commit during a transaction. For example:
CREATE TABLE foo (bar INT);
START TRANSACTION;
INSERT INTO foo VALUES (1);
...
0
votes
0answers
16 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
17 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
19 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
2answers
149 views
Using a transaction to Roll Back Changes with the Entity Framework
I have this specific DAO that inherits methods from a generic DAO
I would like to add a transaction to this code in order to roll back all changes that where made if an exception is found
...
2
votes
2answers
3k views
Transactions in the Magento order system
I just read this topic about the Magento payment flow. It handles about the role of Payment Methods and invoices in Magento. I am curious now though what the exact role of Transactions are within ...
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 , ...
2
votes
1answer
22 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 ...
1
vote
0answers
13 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 ...
0
votes
1answer
409 views
Is there a bug with “set chained” in setAutoCommit() in net.sourceforge.jtds.jdbc.Driver?
I am having some confusion with set chained statement in setAutoCommit() method in net.sourceforge.jtds.jdbc.Driver
The source code says:
2161 if (serverType == Driver.SYBASE) {
2162 if ...
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
2answers
33 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 ...
11
votes
5answers
2k views
Database transactions - How do they work?
I'm trying to learn more about database transactions, I found the ACID rule of thumb for writing transactions and thought of a few questions.
The ACID rule of thumb:
A transaction must be:
...
0
votes
1answer
19 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
0answers
23 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);
...
9
votes
5answers
1k views
Does MySQL/InnoDB implement true serializable isolation?
It is not entirely clear from MySQL documentation whether the InnoDB engine implements true serializable isolation1 or snapshot isolation, which is often confusingly called "serializable" too. Which ...
1
vote
2answers
40 views
In what transaction can we maintain the print programs, routines and Forms, to be printed in transaction QM02?
I need to modify a standard form, and to do this, I'm copying it to a Z* form, and I'd like to know where my print program and SapScript form is being assigned to the workflow.
Anyway, since a lot of ...
0
votes
0answers
35 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 ...
1
vote
2answers
1k views
Authorize.net sandbox transactions
I've got authorize.net account with test(sandbox) mode enabled.
During development I'm making test transactions.
I tried to log in into my account to see the log of said transactions but it says ...
0
votes
2answers
3k views
spring transaction timeout doesn't work
I am trying to stop/rollback a transaction if it runs too long. But it seems doesn't work by configuring the timeout attribute of spring's transaction manager.
My environment:
spring 2.5.6 + JPA + ...
2
votes
1answer
233 views
OleDbTransaction RollBack does not work with FoxPro Data
I am using OleDb in a C# program that can work with either SQL or foxpro. I noticed that when I run statements in a transaction with foxpro data and then try calling RollBack it does not revert the ...
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
22 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 ...
10
votes
4answers
17k views
PHP / MySQL - how to prevent two requests *Update
I have some question ...
example: a user will buy something for his USD
Check his USD Balance
Deduct the USD from his account
Make an Order -> order queue
user gets his item and the other one gets ...
1
vote
4answers
57 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 ...
22
votes
6answers
5k views
Transaction mode for file operations in Java
Perhaps what I'm trying to explain here doesn't make any sense, so I'd like to apologize in advance. Anyway, I will try.
I'm trying to read from a file, perform some database operations and move the ...
1
vote
1answer
592 views
How can I resolve “Stored procedure 'MySP1' may be run only in unchained transaction mode” error?
I am writing a Java app which needs to do some complicated SQL and roll back all of it if any of it fails:
Open Sybase connection using net.sourceforge.jtds.jdbc.Driver
Call setAutoCommit(false)
Do ...
0
votes
2answers
6k views
if column not exists alter table
I use the SQL script that was generated (sql 2k5), to add a column to a table.
I need to add a "check if exists" because my clients sometimes run the script twice. (i have no control over this part, ...
6
votes
2answers
216 views
How can I create safe per-web-request transaction in .net's MVC?
I need to be all my entire application transactional in its every web request it processes.
I need the transaction to start and, if there was no exceptions in controllers, commit it. Otherwise, ...
0
votes
1answer
43 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 ...
-2
votes
0answers
24 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
3answers
223 views
How do I write an application that more or less acts as a container?
I am planning an application that must provide services that are very much like those of a Java EE container to third party extension code. Basically, what this app does is find a set of work items ...



