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
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
25 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
50 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
10 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
53 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
91 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
45 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
21 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
62 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> ...
0
votes
0answers
33 views
Rollback not working in MySQL 5.0.96
Rollback not working in MySQL
The user table engine is InnoDB.
This is what I have.
mysql> SHOW VARIABLES LIKE 'have_innodb';
+---------------+-------+
| Variable_name | Value |
...
0
votes
0answers
25 views
Update using TransactionScope using 2 sql connections across Domains
Please help me in the below mentioned scenario->
I have two servers ,Server A in Domain A and Server B in Domain B.
If I want to update a table in server A and close the connection for the same
...
0
votes
1answer
31 views
JDO Local Transaction Management
In JDO in the situation described below, After methodB() is executed (which has been called from methodA() ), if an exception occurs in methodA() will the rollback take place for the code both in ...
0
votes
1answer
40 views
Open Session in View vs @Transactional
I had been using @Transactional annotations in my Service Layer. But to resolve an error due to Lazy Loading in View I had to use Open Session in View Filter. After this, without use of @Transaction ...
0
votes
2answers
44 views
Transaction in mysql
I am working on a c# application with Mysql database(version 5.5).
I am facing an issue where I need to catch an exception occurred in Mysql.
It doesn't matter whether it is caught in Mysql or in ...
0
votes
1answer
48 views
PHP PDO SQLite. Transaction and updating problems
I have a problem with a transaction in PHP-PDO-SQLite and updating.
$db = new PDO('sqlite:database1.sqlite');
/*
$rowsnumber1 = $db->exec("CREATE TABLE IF NOT EXISTS questions(
id INTEGER PRIMARY ...
0
votes
1answer
14 views
New Transaction not allowed error in a web method that uses database transactions
I am writing a WCF service method to Update two tables (header and Details). I need to be sure that the operation is atomic, So I started a transaction surrounding the inserts.
However since this is ...
1
vote
0answers
43 views
SQL Transactions
Probably a few easy to answer questions for you guys. I'm just a little bit confused and could use some help.
I'm confused on how I would write a series of read/writes for a transaction. I've ...
0
votes
3answers
67 views
How to avoid two different user submitting same request for the same person at the same time
How to avoid two different users submitting same request for the same person at the same time?
This is a helpdesk ASP.NET webforms app with SQL server as the backend.
I have a transaction block in my ...
0
votes
1answer
18 views
Transactions when writing to two or more different data-storages
Let's suppose that we have two data storages: MySQL(innodb) & Redis.
We need to write some data to both storages and do it in transaction.
try {
$Mysql->transaction(); //start mysql ...
1
vote
0answers
18 views
Best approach for archiving transactional data in MySQL 5.5
I'm new to MySQL. I'm looking into setting up a MySQL 5.5 instance on Amazon's RDS. I have worked with DB2 in the past as a developer, but not as a DBA.
I have a requirement to store transactional ...
0
votes
1answer
29 views
ConcurrencyFailureException : Deadlock while adding large no of rows in batches
I have built a rest-ful service to insert large rows. To insert large no of rows I am using insertion in batches. What might cause the deadlock in this snippet of the restful service.
final ...
3
votes
5answers
194 views
EntityManager from LocalContainerEntityManagerFactoryBean does not persist entities into the database
The problem is that the EntityManager injected with @PersistenceContext in a Spring managed bean does not persist the entities to the database. I have tried using @Transactional on the AddDao bean, ...
0
votes
0answers
40 views
Spring's Transaction manager not committing trancsactions intermittently
I am using spring 3.0.5 + hibernate with declarative transaction management in one of our components and everything seems to be working fine. But intermittently it so happens that one of the ...
2
votes
2answers
84 views
Combining Neo4J and MongoDB : Consistency
I am experimenting a lot these days, and one of the things I wanted to do is combine two popular NoSQL databases, namely Neo4j and MongoDB. Simply because I feel they complement eachother perfectly. ...
1
vote
1answer
50 views
Ember Data - re-commit current transaction
I have a button that submits the whole form to the server. Sometimes the server responds with errors and the users need to change/update the fields and submit again (common sense?). I'm using this ...
0
votes
1answer
34 views
Transaction propagation in Activti BPM
We are using two seperate (XA) datasources, one with our business data and one with our Activiti scheme.
We are passing the same JTA transaction manager to Activti through the ...
0
votes
2answers
41 views
Difference between Single statement transaction and multistatement transaction in real life scenerio for Marklogic
I am studying the Single statement transaction and multi-statement transaction in Marklogic Server. Except the difference of explicit commit in multi-statement,what are other differences.I mean what ...
0
votes
0answers
25 views
Process incomplete transactions for products in iOS 6+
I am developing iphone app to buy physical goods. For this I am using PayPal Adaptive Payments using PayPal iOS SDK. Everything is working fine. But I am not able to decide how to process incomplete ...
0
votes
1answer
39 views
Google App Engine & JDO: Transaction is not written to the datastore
We are using GAE with JDO2.3 and have this code:
public void submit_job (HttpSession session, BlobKey blobKey) throws Exception {
// START TRANSACTION
PersistenceManager pm = ...
1
vote
0answers
24 views
What is the difference between save() method and persist() method in Hibernate?
I found some answers at stackoverflow,it says "persist() also guarantees that it will not execute an INSERT statement if it is called outside of transaction boundaries. This is useful in long-running ...
0
votes
1answer
44 views
Is it mandatory to close transaction each time in Hibernate?
In Hibernate we close Session each time but is it necessary to close transaction each time in Hibernate or only transaction commit is sufficient?
0
votes
1answer
20 views
add to has_many association and use activerecord callback
I have 2 models, Foo and Bar. Foo has_many bars. I'm trying to do something like the following in my Foo model
add_bar?(blah)
bar = Bar.new
bar.foo = self
bars << bar
save
end
...
0
votes
0answers
17 views
How to find the session that owns a transaction blocking the truncation/reuse of tempdb
I noticed that the DBCC OPENTRAN(tempdb) returns the spid of the process that blocks the truncation of tempdb.
The problem is that DBCC INPUTBUFFER(spid) gives me back the statement involved, but ...
1
vote
1answer
47 views
javascript: how to keep a transaction (WebSql) alive
I have a Worker in which I want to execute my sql queries. But, and that is my problem, I want all these queries to be executed within the same transaction. This is how I have my (not working) Worker ...
0
votes
1answer
31 views
What happens when using PDO->beginTransaction when the database does not support transactions?
I read here on the official documentation that not all drivers support transactions, therefore PDO runs in auto-commit mode, but I read here that running PDO->beginTransaction() shuts off ...
0
votes
1answer
53 views
Issue about transaction in CodeIgniter
I have 2 models: modelA, modelB. I want to implement 2 operations which are related to these models in the CI's transaction in myController. E.x:
$this->db->trans_start();
...
2
votes
0answers
121 views
How can I check a 0-confirmation Bitcoin transaction without having the private key in my wallet?
I am programming a site that accepts Bitcoin payments, but I do not want to hold any private keys on the server. I am using the so-called "lazy API" method where I create private keys and addresses ...
1
vote
1answer
38 views
Is it bad design to have access to the UnitOfWork in the Repository?
Background: Entity framework4.1 and MVC4
My setup has model entities, and then a generic repository and then model specific repositories like UserRepository, ProductRepository that inherit from the ...
-2
votes
0answers
23 views
Oracle - transaction occurance before and after [closed]
Does anyone know what occurs before a transaction is committed in Oracle AND after it is committed?
0
votes
0answers
24 views
Hibernate @Transactional annotation for separate Thread
We have two Java projects, one is a webapp using Spring MVC/Hibernate, and the other is an embedded JAR.
The webapp starts a Thread, which performs some code in the embedded JAR. Eventually, the JAR ...
0
votes
1answer
66 views
C# Nested transaction in a loop, but rolling back if any of them fail
The issue i'm trying to solve is as follows:
I have a process that ingests data from a file and inserts certain things in multiple tables, as it is now it is all done with one transaction, however ...
0
votes
1answer
16 views
MySQL transactions: reads while writing
I'm implementing PayPal Payments Standard in the website I'm working on. The question is not related to PayPal, I just want to present this question through my real problem.
PayPal can notify your ...
0
votes
2answers
60 views
Yii transaction not rollbacked
i have the following piece of code and i pass it some data to generate an exception and test if the transaction rollback is happening. It seems it's not and i'm not sure why.
can someone help me? ...
1
vote
1answer
29 views
Is banks overdraft penalty linked to technology limitations? [closed]
I have been reading an article about data consistency in banking operations.
The author highlights the fact that, differently from the common thinking, banks adopt BASE (Basically Available, Soft ...
0
votes
2answers
28 views
Making a HTTP call from a java application coupled with a spring transaction manager
Here's the situation. I have an application that's working fine with the transactionmanager that i'm using. what i need to do is post some information onto another application in the form of http ...




