The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
41 views

How can I atomically update a row with a timestamp?

I have a distributed application that uses the database to synchronize clients. Clients will attempt to update a record, but will only do so if no other client has done so in the past 1 hour. ...
0
votes
0answers
57 views

How to lock and unlock row in SQL using LINQ or WCF?

I am creating a WCF service, in that i am implementing one scheduler which uses SQL Server 2008 as a backend. I want a simple code where only one user can perform operation at a time. When multiple ...
0
votes
2answers
105 views

Multiple instances of same PHP script processing diffrent MySQL rows using rowlocking

What I want to do is to execute the same script every few minutes with cron. The script needs to process some data read from the database, so obviously I need it work on diffrent row each time. My ...
0
votes
0answers
143 views

Can I implement row lock in mysql/spring jdbctemplate?

We are developing a business system, and now another system wants to operation our database. The business system uses spring jdbctemplate to access mysql. We need to lock a row when it is operated to ...
0
votes
1answer
59 views

Quick explaination needed for row locking in InnoDB

I have a client-server application with 2 clients: I need to make the reading of the database efficient when more than 1 client is reading it, without all clients getting the same rows. I use InnoDB ...
5
votes
1answer
356 views

Where to use ROWLOCK, READPAST with CTE, Subquery and Update?

In trying to avoid deadlocks and synchronize requests from multiple services, I'm using ROWLOCK, READPAST. My question is where should I put it in a query that includes a CTE, a subquery and an ...
0
votes
1answer
827 views

sql server hint NOLOCK and ROWLOCK

I'm currently investigating an annoying problem on my website. We're giving away prizes regularly on the website, but to enter the competition people have to login. So the website becomes a lot busy ...
3
votes
0answers
375 views

sql server compact deadlock caused by page-lock on index

I am working on a c# desktop application using NHibernate as data access layer and SQL Server compact. The application uses multiple threads to perform selects and updates of data. In general it is ...
0
votes
0answers
60 views

What happens if you try to update a locked record in JET?

If I use JET/DAO to open a recordset on a MDB database using dbPessimistic locking, what will happen if another user tries to update a row in that recordset at that time? Will there be an error, or ...
1
vote
3answers
148 views

Can you do row locking in Access?

Can you do row locking in Access/JET? For example, can you do the following in JET SQL: UPDATE Test WITH (ROWLOCK) SET UpdateDate = myDate WHERE PrimaryKey = myKey
0
votes
2answers
265 views

Pessimistic locking of record?

I am creating a WCF Web Service, for a Silverlight application, and I need to have a record to be Read/Write Locked when Modified. I am using MySQL version 5.5.11. To be more specific, i would ...
2
votes
2answers
2k views

I need row-level locking

This is an extension to Is it possible to force row level locking in SQL Server?. Here is the use case I have accounts table having account numbers, balances, etc. This table is being used by many ...
1
vote
1answer
396 views

Do I need UPDLOCK hint in this SP? Reading a Data Queue Row More Than Once

My DB Schema is Job -> (Many) JobData -> (Many) Results. A Job is broken into multiple JobData rows so that multiple threads can process 'chunks' of the Job (each JobData row). Then the processing ...
2
votes
2answers
227 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 ...
0
votes
2answers
133 views

Are data rows locked when editing them in SQL Server Management Studio 2008?

When I right-click on a table in SQL Server Management Studio and choose 'Edit top 200 rows', at what point, if ever, would the data that I'm looking at be locked? A colleague of mine stated that ...
0
votes
1answer
552 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 ...
6
votes
2answers
2k views

When exacly MySQL locks a row on updating InnoDB table?

If I have this multiupdate query UPDATE user u INNER JOIN user_profile up ON up.user_id = u.id SET u.name = 'same_name_i_already_had', up.profile.age = 25 WHERE u.id = 10 Let's suppose the row 10 ...
2
votes
1answer
232 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 ...
13
votes
3answers
2k 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 ...
0
votes
1answer
1k views

MS-SQL Server selecting rows, locking rows. Unique returns

I'm selecting the available login infos from a DB randomly via the stored procedure below. But when multiple threads want to get the available login infos, duplicate records are returned although I'm ...
0
votes
2answers
90 views

Same data for different key in table takes lots of time

I have a table... FactorID, col1 col2 Factor Value 1 a 2 1231 1 b 3 2342 2 a 2 1233 2 b 3 2344 That mean ... For ...
1
vote
1answer
2k 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
0answers
429 views

How to use rowlock and readpast with NHibernate?

I have an application which currently reads data from a table using the following stored procedure: CREATE PROCEDURE [dbo].[GetBatchOfEmails] @BatchSize INT AS BEGIN SET NOCOUNT ON; WITH ...
3
votes
1answer
4k views

SQL Server ROWLOCK over a SELECT if not exists INSERT transaction

I have upgraded from SQL Server 2005 to 2008. I remember that in 2005, ROWLOCK simply did not work and I had to use PAGELOCK or XLOCK to achieve any type of actual locking. I know a reader of this ...
0
votes
2answers
271 views

“Atomic section” in Ruby MongoDB driver?

Is there a way to perform a set of non-atomic actions on MongoDB server (using the Ruby driver) as an single atomic action? What I need is basically a lock on certain object/collection.
16
votes
3answers
16k views

Is it possible to force row level locking in SQL Server?

I can see how to turn off row level and page level locking in SQL Server, but I cannot find a way to force SQL Server to use row level locking. Is there a way to force SQL Server to use row level ...
0
votes
1answer
365 views

Can i lock a record from a join sql statment using ROWLOCK,UPDLOCK?

I have a store procedure to get the data i want: SELECT a.SONum, a.Seq1, a.SptNum, a.Qty1, a.SalUniPriP, a.PayNum, a.InvNum, a.BLNum, c.ETD, c.ShpNum, f.IssBan FROM OrdD a JOIN OrdH b ON a.SONum = ...
2
votes
1answer
401 views

Long queue times for oracle row locks

I keep running into "enq: TX - row lock contention", when I run the Sql command below in a oracle 9 DB. The table mytable is a small table, with less than 300 lines. UPDATE MYTABLE SET col1 = ...
1
vote
2answers
297 views

What changes should be made to SQL Server’s locking architecture to make it more developer friendly?

I’ve lately come across a rather frustrating situation where SQL server refuses to issue locks only against a primary key when a statement like this select * from table with (rowlock updlock) where ...
2
votes
2answers
760 views

Regarding SQL Server Locking Mechanism

I would like to ask couple of questions regarding SQL Server Locking mechanism If i am not using the lock hint with SQL Statement, SQL Server uses PAGELOCK hint by default. am I right??? If yes then ...
2
votes
3answers
1k views

MySQL InnoDB locking only the affected rows?

I have an InnoDB table containing users, like this: +--------------+-----------------------+ | user_id | name | +--------------+-----------------------+ | 1 | Bob ...
1
vote
4answers
284 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 ...