Table and Column Level Locks

How to handle the table level locks and column level locks?

Questions by jagadeesh9   answers by jagadeesh9

Showing Answers 1 - 3 of 3 Answers

When you are performing INSERT , DELETE , UPDATE operations on a table it implicity aquires row level locks.  If a transaction obtains a row lock for a row, the transaction also aquires a table lock for the corresponding table to prevent conflicting DDL operations.

Table level locks are  implicitly aquired when you perfoming DDL operations.

You may explicity aquire
row level lock using select for update of
and table level lock using lock table.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions