Posts by Túlio • 1 point
2 posts
-
0
votes1
answer528
viewsA: Lock registry (lock) in SQL Server
Solved, besides changing the table index to not allow lock per page (alter index Myindex on Mytable set (allow_page_locks = off), I removed a field that was filled by a Trigger and it worked.
-
0
votes1
answer528
viewsQ: Lock registry (lock) in SQL Server
Using SQL Server and Delphi, I need to control so that in a certain database table two changes cannot be made at the same time in the same record, I cannot start the update if there is already…