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. ...
-2
votes
1answer
20 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
1answer
28 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
1answer
13 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
41 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
1answer
29 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 ...
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
0answers
17 views

Get active hibernate transactions

We're using AOP in our persistence layer to check for deadlocks and perform different retry strategies. The issue is due to the multi-threading environment, we are encountering hibernate "transaction ...
0
votes
1answer
65 views

Entity Framework Transaction not rolling back

The following code is in a loop which executes many times. When I execute the following code it occasionally generates a foreign key exception, which is fine because it is handled and I attempt to ...
0
votes
1answer
190 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
61 views

Executing Query keeps running after ROLLBACK TRANSACTION called

This is the query I tried running. I was testing out a ROLLBACK because we need to do it in an assignment. BEGIN TRANSACTION; declare @var bit; set @var = 0; BEGIN TRY INSERT INTO ...
0
votes
1answer
97 views

Commiting inner transaction scope, while rolling back the outer transaction scope

I am trying to do the following in a highly concurrent system written in C#. Aquire row-lock on a data-item in transaction scope Do a lot of db-interaction if anyhing goes wrong Update locked ...
0
votes
1answer
33 views

lock conversion update locks

I am reading chapter 6 of your book, Principles of Transaction Processing and the concept of update lock explained in there is not very clear to me. Basically, what I am not clear about is that won't ...
3
votes
1answer
73 views

SQL: Try/Catch doesn't catch an error when attempting to access a table that it can't find

I've created a stored procedure that runs a number of commands to modify data. I only want to commit the transaction if everything succeeds. I'm doing this by using a try-catch block in the manner ...
1
vote
3answers
50 views

How do I make a database transaction atomic (all parts complete or none of them)?

Let's say, I have one saving account and one checking account. My saving account balance is 150$. I am trying to transfer 100$ from my saving account to checking account, also transfer 100$ from my ...
0
votes
1answer
64 views

Is it possible to manually rollback the database in the Rails console when NOT starting in sandbox mode?

Say you're working in the console, and you delete a record where you have a belongs_to :model :dependent => :destroy where you didn't mean to, for example, and you end up deleting other records ...
0
votes
0answers
55 views

Database Transactions - Keeping some data from rolling back

How can I keep some data from a transaction which is expected to roll back? Is there a way of telling the transaction not to roll back some lines? Would executing a stored procedure stop the ...
1
vote
0answers
51 views

Releasing DB connections back to the pool?

In a Java EE environment, I have defined 2 datasources pointing to 2 databases. Drivers that are used support XA transactions. If i start a transaction that will involve both Db's StartXaTran (){ ...
0
votes
1answer
67 views

Do we really need to set the Transaction in ThreadLocal?

I pasted my code below. In our application they set the transaction in thread local. Actually my doubt is why do we need this? What could happen if we didn't set the tranaction in threadlocal? ...
0
votes
1answer
43 views

Is it possible to step outside of the current TransactionScope and insert data

Consider the following: using (var outerScope = new TransactionScope()) { InsertDataInTableOne(); InsertDataInTableTwo(); InsertDataInTableThree(); outerScope.Complete(); } Now I ...
0
votes
0answers
90 views

Deadlock on foreign key index

I am encountering a deadlock with the following set up: tbl_articles_keywords has foreign index at column article_id to column id of tbl_articles tbl_articles_resources has foreign index at ...
1
vote
1answer
19 views

Do all queries run within a single Django request operate on the same DB snapshot?

Django documentation on transaction management focuses on write operations. I'm puzzled what guarantees Django gives on read consistency. If one request executes multiple read queries, and the second ...
0
votes
0answers
64 views

Atomic operation django

I have updated to django 1.4 recently and have been working through a number of issues. The most recent is atomic operations. For some reason when a link is clicked the view is called twice. This ...
2
votes
2answers
413 views

Zend 2 db transactions?

How do we use transactions in Zend 2? I didn't find anything in the API, and a couple questions for Zend 1 refered to the regular PDO functions, but I don't see anything like that in Zend 2.
0
votes
0answers
10 views

Sooda generate TargetInvocationException

When i compile this code (I'm use ORM Sooda) using (SoodaTransaction t = new SoodaTransaction()) { //t.Commit(); } the compiler generate the exception ...
0
votes
0answers
82 views

Too many active database sessions from JBoss to Oracle

We have a web-application that we recently migrated from JBoss 4.3 to 5.1GA. The application was developed using JSP,Servlet and EJB2. All Servlet and JSP content is deployed on Tomcat and the EJB ...
15
votes
4answers
521 views

Why do SQL databases use a write-ahead log over a command log?

I read about Voltdb's command log. The command log records the transaction invocations instead of each row change as in a write-ahead log. By recording only the invocation, the command logs are kept ...
4
votes
6answers
151 views

do database transactions prevent other users from interfering with it

Suppose I do (note: the syntax below is probably not correct, but don't worry about it...it's just there to make a point) Start Transaction INSERT INTO table (id, data) VALUES (100,20), (100,30); ...
8
votes
2answers
220 views

Is it a correct behaviour of transactions?

I have three transaction services that are executed within a transaction boundary (stratTransaction or begin transaction). All three services uses different connection (No_Transaction, ...
3
votes
1answer
94 views

With Spring transaction manager configured, when will the db connection established?

Supposed there is a method getAssignedTasks in a class named TaskService and this method actually retrieves information from two datasources, dao1.getInfo() and dao2.getMoreInfo(). The question is ...
1
vote
1answer
37 views

Database transaction isolation in MVCC model

I have read about transaction isolation in MVCC model here and 2 questions arose. Does MVCC use locks? As far as I understood -- no, if so -- What does this table mean?
1
vote
3answers
74 views

How does a database read data change during the transaction? [closed]

Let's assume the following scenario: [Start TX] SELECT userName FROM users WHERE userId = 1; -- returns x UPDATE users SET userName = 'y' where userId = 1; SELECT userName FROM users WHERE userId = ...
1
vote
2answers
33 views

Accepted approach regarding data-modelling regarding Product - Order - deleted Product

We are having a dilemma with modelling our data for a new application. The situation is somewhat complex; so I write down a simplified situation that is equivalent to our problem: In a web app, the ...
1
vote
0answers
108 views

Performance of Rails transaction rollback vs. manual cleanup in Production DB

I am aware that a rollback is not the same thing as a manual cleanup and is, in most cases, the preferred approach. That said, what is the performance difference between a large database rollback ...
1
vote
1answer
50 views

Delete and select operation in one transaction

Hi, I Have a transaction in which I am deleting some rows from the table based on the given data and then I am doing a select query for the same data on the same table.I tried that and it is ...
0
votes
0answers
152 views

Which NoSQL database fits for a transaction processing system

I am building a Java based medium complex B2B transaction processing system on cloud, with an AJAX web front-end and Web-service APIs for partner integrations. The application will potentially be used ...
1
vote
1answer
86 views

Correctly closing a Hibernate transaction

I am investigating a connection leak in my code. We are using c3p0 to manage the connection pool and my general Hibernate use pattern is something like this: EntityManager entityManager = ...
0
votes
0answers
113 views

How to maintain acid property of 3 sequential transaction of three diffrenet databases

I am currently working on a project where I have to use 3 three different databases. I am using jdbc 3, mysql 5.x ,struts2.x and hibernate3.x suppose these databases connections are x,y,z I have to ...
3
votes
1answer
150 views

ActiveRecord: Concurrent access between validation and writing to the database

Let's say I have on online book store whose data model lookes like that: Prior to creating a new order, I want to make sure that enough items are in stock, so I have a method like this def ...
0
votes
1answer
41 views

Optimistic locking in a single update statement

If I have two threads updating a database in separate transactions with statements that look like Thread 1 UPDATE people set id='12346' WHERE name='Jeff' Thread 2 UPDATE people SET name = 'Jeff' ...
0
votes
2answers
50 views

Reverting a database insertion with log files?

I am working on a program that is supposed to insert hundreds of rows to the database per run. The problem is that once the inserted data is wrong, how can we recover from that run? Currently I only ...
0
votes
1answer
42 views

Hibernate transaction and physical transactions starts and close at the same time?

When I start a hibernate transaction does it open a connection to database and start a physical connection there? The question is the same for closing a hibernate transaction so does it close the ...
0
votes
1answer
129 views

Just what is a high transactional database

silly question I know, but what is the definition of high transaction database? how many transactions per second constitutes a high, medium and low transactional database?
3
votes
2answers
647 views

How to dispose TransactionScope in cancelable async/await?

I'm trying to use the new async/await feature to asynchronously work with a DB. As some of the requests can be lengthy, I want to be able to cancel them. The issue I'm running into is that ...
0
votes
1answer
234 views

How to use semaphore to lock table?

I would like to lock an MDB table from reads while a transaction executes. I would use dbDenyRead but apparently this is unreliable and doesn't always the lock the table: ...
0
votes
0answers
30 views

open db's transaction or not, any difference?

I think, when I access a berkeley db, each of my operation (no matter read or write) will be logged no matter the transaction is open or closed. Then, what's the difference of opening and not opening ...
3
votes
0answers
85 views

sqlite create/delete lots of tables

I am using sqlite in multithreaded process. I have both in-memory db and filesystem db attached together. I have a requirement to keep moving tables from in-memory db to filesystem db(move 2 tables ...
0
votes
2answers
90 views

How transacted db operations (sql server) are really executed from C# (wcf service) with default isolation level … based on example

I have a very important question which I need help with. I will try to strip the problem down to this example: Having a wcf/web service implementation (but it could be any other module) as follows: ...
0
votes
0answers
107 views

Rollback or queue task on multiple database update failure?

We are designing a PHP RESTFul service that takes request and update records in 2 external databases, both of which have a web service interface (one SOAP the other REST). A basic user case is like ...

1 2 3 4 5 7