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
5 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
18 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 ...
1
vote
2answers
13 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
1answer
28 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 {
...
0
votes
0answers
18 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 ...
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
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
37 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
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
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
15 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
18 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 , ...
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 ...
...
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 ...
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 ...
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 ...
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
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
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 ...
0
votes
0answers
22 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
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 ...
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 ...
1
vote
4answers
56 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
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 ...
0
votes
1answer
11 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
18 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
8 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
27 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
23 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
16 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
36 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
68 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
43 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
37 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
44 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
49 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 ...

