Tagged Questions

7
votes
3answers
3k 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 ...
2
votes
1answer
1k 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 ...
2
votes
3answers
434 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 ...
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
2answers
187 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 ...
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
38 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 ...
0
votes
2answers
57 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 ...