Tagged Questions

11
votes
3answers
338 views

How many rows will be locked by SELECT … ORDER BY xxx LIMIT 1 FOR UPDATE?

I have a query with the following structure: SELECT ..... WHERE status = 'QUEUED' ORDER BY position ASC LIMIT 1 FOR UPDATE; It's a single-table SELECT statement on InnoDB table. Field position (INT ...
2
votes
2answers
51 views

Unit-testing PostgreSQL row-level locks

I am currently adding unit tests to a rather large quantity of PostgreSQL stored procedures, using pgTap. Some of the procedures perform operations which lock rows explicitly. These locks are ...
1
vote
1answer
107 views

SELECT FOR UPDATE and WHERE condition on two indexed columns - what's locking strategy?

This question is a logical continuation of this one: How many rows will be locked by SELECT ... ORDER BY xxx LIMIT 1 FOR UPDATE? Suppose I have such SELECT: SELECT id, status FROM job WHERE status ...
1
vote
1answer
551 views

Rowlock and lock escalation

I'm trying to use rowlock to prevent certain rows being updated while it's running but the problem is that I can't use the tables at all while running this: set transaction isolation level repeatable ...
1
vote
4answers
181 views

Ensuring unique numbers from a sql server database

I have an application that uses incident numbers (amongst other types of numbers). These numbers are stored in a table called "Number_Setup", which contains the current value of the counter. When ...
0
votes
1answer
91 views

MySQL transactions vs locking

Quick question/clarification required here. I have a DB table that will quite possibly have simultaneous updates to a record. I am using Zend Framework for the application, and I have read about two ...