Tagged Questions
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
3answers
538 views
MySQL InnoDB locking only the affected rows?
I have an InnoDB table containing users, like this:
+--------------+-----------------------+
| user_id | name |
+--------------+-----------------------+
| 1 | Bob ...
0
votes
1answer
326 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
1answer
171 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 = ...