Locking Question

  • Hi,

    I need to check if Row Level Locking is set for a sepcific server on which My SQL Server database resides.

    Is there a way I can check this please?

  • Row Level Locking is the default on an instance, database and the objects in the DB.

    It can be disabled on an object level, and you can see if it is disabled on specific objects in a database by querying:

    SELECT OBJECT_NAME(object_id) from sys.indexes WHERE allow_row_locks <> 1

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply