In databases, when multiple processes alter the same table or row, each can lock a table or row. When they need to alter or lock the same resource to complete, that can cause deadlocks, or irreconcilable contention between the processes, causing one of them to be stopped by the system.

learn more… | top users | synonyms

0
votes
0answers
24 views

RMySQL Deadlock work-around

I am running a R-script over multiple cores which inserts data into a table which already holds over 700m rows. Because the table is becoming too large, deadlocks are becoming a common occurrence, ...
0
votes
1answer
22 views

To what extend is table design responsible for the occurrence of deadlocks?

We often get the error SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction. Some websites show a solution by simply retrying with a ...
-2
votes
0answers
28 views

Transaction (Process ID) was deadlocked on resources with another process and has been chosen as the deadlock victim. How to fix the deadlock?

I am calling and insert database tables in async calls with background worker class. I am getting deadlocks like below.But as my per my knowledge, sql will not go for deadlock till 2000 simulatinious ...
1
vote
1answer
23 views

Is it appropriate to return HTTP 503 in response to a database deadlock?

Is it appropriate for a server to return 503 Service Unavailable when the requested operation resulted in a database deadlock? Here is my reasoning: Initially I tried avoiding database deadlocks, ...
1
vote
0answers
25 views

MySQL transactions deadlocking, but SHOW ENGINE INNODB STATUS does not show a true deadlock

I am having some trouble with 2 processes modifying the same table in a MySQL database. Very occasionally it causes a deadlock and one or other of the processes gets a 'Deadlock found when trying to ...
0
votes
2answers
43 views

Resolving deadlock caused by parallel triggers in oracle

My friend asked me this question and I was not able to resolve it. Consider a scenario where I have two triggers on table1. Both are BEFORE INSERT triggers. Both the triggers try to update row 1 of ...
0
votes
2answers
59 views

How to avoid deadlocks on simple update statements?

I have table that holds the connection and disconnection times of the clients. ID int ClientID int BeginDate datetime EndDate datetime When a client is connected, a Session record is ...
1
vote
1answer
26 views

Baffling InnoDB deadlock

This InnoDB deadlock is really making me pull my hair. As far as I can see: the transaction (1) is waiting for the PRIMARY on "applications" The latter has been acquired by (2) for some rather long ...
3
votes
0answers
30 views

Oracle 11g delete by unique key slow [migrated]

We have been plagued by a deadlock issue for quite some time that relates to deletes and inserts on the same table. It happens sporadically, but had been increasing in frequency. It would manifest ...
1
vote
1answer
77 views

Why are these queries deadlocking?

I've got two Oracle queries running in different sessions, which are deadlocking, and I'm having trouble seeing why that's happening. The query in session 1 is this: UPDATE REFS R SET R.REFS_NAME = ...
2
votes
2answers
41 views

postgres deadlock without explicit locking

I use PostgreSQL 9.2, and I do not use explicit locking anywhere, neither LOCK statement nor SELECT ... FOR UPDATE. However, recently I got ERROR: 40P01: deadlock detected. The query where deadlock ...
1
vote
1answer
34 views

How to avoid mysql dead lock?

I am having an issue where I can't remove records. I keep running into dead lock timeout issue. I am running a simple query delete from phone_calls where status =0 after a while I get this error ...
0
votes
2answers
52 views

Query is locking tables, can't kill that process

I am having an issue in MySQL. I have run this query: UPDATE table SET status = 2 WHERE status = 3 This query caused a deadlock on the table and can't bypass it. I tried to do: show processlist ...
0
votes
1answer
61 views

SHOW ENGINE INNODB STATUS missing deadlock section

We are experiencing a deadlock and trying to get information about it from the InnoDB engine, but we get no LATEST DETECTED DEADLOCK section. Could anyone help me understand why this might be? Is ...
1
vote
1answer
76 views

SQL Server Select statement with (XLOCK,READPAST)

I ran the following query and my records are locked now I can't read or update or delete. For testing purpose i didn't called commit tran and now these records got stuck. How can I release these locks ...
1
vote
1answer
149 views

t-SQL compound statement causes the deadlock, any idea why?

I'm in the process of learning a more complex SQL Server 2008 techniques so I apologize in advance if I ask a too obvious question. I have the following table created as such: CREATE TABLE ...
0
votes
0answers
77 views

DeadlockLoserDataAccessException while executing jdbc batchUpdate

Recently i got the following exception: org.springframework.dao.DeadlockLoserDataAccessException: PreparedStatementCallback; it came when my code was calling the following method: int[] ...
0
votes
1answer
76 views

Postgres deadlock

I am seeing some unexplained deadlocks in our Postgres database. Simplifying the related queries, one of the transactions involved in the deadlock is: BEGIN; UPDATE A SET CHUNK_ID=1, ...
0
votes
0answers
91 views

SQL Server 2008 R2 Standard: database tuning (to avoid deadlocks)

Currently, I'm facing a problem with the Microsoft SQL Server 2008 R2 Standard edition (10.50.1600). The structure/coding of the database has not been modified much lately (been in use for 3-4 years ...
0
votes
1answer
121 views

SQL Server 2000 Truncate Deadlock

We are currently running a database on SQL Server 2000. The database constantly imports data from flat files for later querying. This process is done by a series of SQL Server stored procedures and ...
0
votes
0answers
80 views

MySQL deadlock for simple delete

How can such a simple delete query cause a deadlock in MySQL and what would I do about it, specifically? DELETE FROM view_offers WHERE view_id = 55 For the table CREATE TABLE `view_offers` ( ...
1
vote
1answer
209 views

MS SQL Server third party transaction blocking monitor tools

Are there any good open source or otherwise free MS SQL Server transaction blocking monitor tools? One that would detect a blocking transaction that lasts longer than X and then email an alert ...
0
votes
0answers
28 views

What kind of lock/transaction should I use for update query to avoid race conditions in MYSQL

I have a SP which is called by job workers that call to acquire a job from my table DECLARE _count SMALLINT; UPDATE XYZ SET Status='COPYING', ... JobID=_jobID WHERE Status='WAITING' AND JobID IS ...
1
vote
2answers
161 views

How to resolve SQL Server deadlocks - once changing order and shortening queries is exhausted?

i have two hypothetical queries: UPDATE BankAccounts SET HomePhone = '+1 252-555-0912' WHERE AccountNumber = 14400000619 and SELECT * FROM BankAccounts WHERE HomePhone = '555-1212' on a ...
0
votes
1answer
123 views

Avoiding SQL deadlock in insert combined with select

I'm trying to insert pages into a table with a sort column that I auto-increment by 2000 in this fashion: INSERT INTO pages (sort,img_url,thumb_url,name,img_height,plank_id) SELECT ...
1
vote
0answers
142 views

Deadlocks in Sql Server 2008 but not 2005: concurrent SqlBulkCopy

I am running concurrent bulk copies into a sql table that already holds data. There are a few indexes on the table but in this case no clustered indexes, just non-clustered. The table is not ...
0
votes
0answers
168 views

Preventing Deadlock in Multi User Environment

The current situation: We develop a program to manage multiple e-Commerce Shops. Editing an order is a task that includes many tables and therefore it's neccessary to use transactions. If the last ...
3
votes
1answer
248 views

Scheduler stopped when deadlock happened in Spring Transaction

I've developed a monitoring application that uses Spring-3.0 Hibernate-3.6.5 with SpringHibernateTemplate as DAO. Database SQL Server 2008. This app has long running transaction every day. ...
0
votes
0answers
39 views

how to avoid exception and deadlock when calling DbDataAdapter.Fill during pending transaction in ADO.NET?

I'm currently using SqlClientFactory to create connections but my solution should work also on Oracle. What I'm doing is: begin tranasaction create new DataRow populate it check from db that a id ...
0
votes
1answer
280 views

How to avoid database deadlocks?

Some database features, such as SELECT ... FOR UPDATE and ON DELETE CASCADE, are implicitly vulnerable to deadlocks because the database does not specify what locking order will be used. I found two ...
-1
votes
1answer
96 views

Implemented a job queue - can't resolve a deadlock [closed]

I'm trying to implement a job queue, which is handled by multiple concurrent processes - that's why there's a locked_by column. First, UPDATE statement locks some rows and after doing some heavy ...
0
votes
1answer
97 views

Looking for assistance with SQL Server Deadlock issue

Looking for help solving this deadlock issue... I have a stored proc that is called rather frequently from a number of processes but on a small table (quantity of rows is in low thousands)... Once in ...
2
votes
2answers
382 views

MySQL Select… for update with index has concurrency issue

This is a follow up on my previous question (you can skip it as I explain in this post the issue): MySQL InnoDB SELECT...LIMIT 1 FOR UPDATE Vs UPDATE ... LIMIT 1 Environment: JSF 2.1 on Glassfish ...
3
votes
1answer
632 views

SQL Server 2008: U and X locks - deadlock on one table without any indexes. How?

I observe really strange behavior of my DB. I have one small table (about 300 rows) where one field is continuously updated. And I was getting a lot of deadlocks there - update of the table was ...
0
votes
1answer
76 views

deadlock chain sql

i'm newbie to sql managment... and i'm writing some .net 2.0 applications, one of these, is making many trouble with sql query, similar to many already done and working with problem (also without ...
1
vote
0answers
54 views

MySQL deadlock between two stored procedures

I have two stored procedures, both of which are called by another application on timers in separate threads. On one of our installations, I noticed that there is a deadlock every time the second ...
2
votes
2answers
925 views

Magento deadlocks

I am using Magento 1.7.0.2 Community Edition and I have encountering a big problem - deadlocks and "Lock wait timeout exceeded" errors. Problem exists while specific CRON tasks are executed ...
0
votes
1answer
566 views

C3p0 APPARENT DEADLOCK exception even though statement caching is disabled

I am using C3p0 connection pool and I am observing following exception in my server. com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@ed866f -- APPARENT DEADLOCK!!! Complete ...
0
votes
1answer
150 views

deadlock transaction - communication buffer resources

I would like to get a suggestion on improving my setup that is causing the sql server to return the deadlock message. I have multiple threading application that actually uses the TaskParallel library ...
4
votes
2answers
447 views

Implementing retry logic for deadlock exceptions

I've implemented a generic repository and was wondering if there is a smart way to implement a retry logic in case of a deadlock exception? The approach should be the same for all repository methods. ...
1
vote
2answers
280 views

sqlserver how to set job priority

Is there any way to set one job priority higher then other, In my case there are two jobs those are working on same set of tables,first JOB-A which is running every 12 hr and other JOB-B is every 10 ...
3
votes
1answer
148 views

Deadlock due to hash collision?

I have a deadlock, which is occuring with exclusive lock on the same clustered index, by two different process IDs. The Database is on RCSI mode. I have two questions. 1) Besides overlapping rows by ...
0
votes
1answer
208 views

Postgresql -> deadlock from simple update. I can't get the cause

Here is table ( simplified ): Table "public.link" Column | Type | Modifiers ...
2
votes
1answer
58 views

How can I parallelize Writes to the same row in MySQL?

I'm currently building a system that does running computations, and every 5 seconds inserts or updates information based on those computations to a few rows in MySQL. I'm working on running this ...
8
votes
2answers
324 views

Can two “SELECT FOR UPDATE” statements on the same table cause a deadlock?

Suppose that two simultaneous transactions execute the following queries on a Postgresql DB: Transaction A: SELECT * FROM mytable WHERE id IN (1, 2, 3, 4) FOR UPDATE Transaction B: SELECT * FROM ...
1
vote
2answers
432 views

Firebird forcebly remove deadlock

I'm using Delphi IBQuery and IBTransaction components to update all records in database with this query: UPDATE INVOICES SET BLK = 0; When users leave another client application opened it leaves ...
2
votes
2answers
139 views

Singleton with Lock - possible deadlock? in java

I use singleton to record all events occuring simoultanously in the system. public class Singleton { private static Lock dbLock; protected Singleton() {} private static class SingletonHolder { ...
0
votes
2answers
434 views

Deadlock between Delete and Update

First process: <deadlock-list> <deadlock victim="process8d9798"> <process-list> <process id="process8d9798" taskpriority="0" logused="0" waitresource="PAGE: 5:1:190354" ...
1
vote
1answer
91 views

How Can I Monitor The Database Transactions in my multi-threaded, EJB2 JBoss Application?

I have encountered a reproducible Oracle deadlock within my application. An initial investigation of the code has not thrown up any obvious cause, so I would like to re-create the situation while ...
5
votes
1answer
828 views

How is Hibernate deciding order of update/insert/delete

Let's first forget about Hibernate. Assume that I have two tables, A & B. Two transactions are updating same records in these two tables, but txn 1 update B and then A, while txn 2 update A then ...

1 2 3 4