June 11, 2020 at 12:00 am
Comments posted to this topic are about the item Lock Scenarios Using sys.dm_tran_locks
Br. Kenneth Igiri
https://kennethigiri.com
All nations come to my light, all kings to the brightness of my rising
June 12, 2020 at 10:44 pm
Thank you for the article. I found it useful.
Listings 6 and 9 (it's the same code) are missing BEGIN TRANSACTION statement.
June 13, 2020 at 7:19 am
Thanks so much for the feedback and corrects. I have updated it. I'm sure it sill reflect once the changes are approved.
Br. Kenneth Igiri
https://kennethigiri.com
All nations come to my light, all kings to the brightness of my rising
March 11, 2021 at 3:00 pm
One comment. For your example #10, deleting a range of rows, you used the following
DELETE FROM EMPLOYEE WHERE FName LIKE '%Kokou%';
Because the search argument began with a %, it was not "Sargable" and would always require a scan for the execution plan. In addition, there are no statistics available as to how many rows would be returned from such a search, so SQL is forced to be conservative. That may be an alternate cause of the table lock.
Given an index over the [Fname] column a range of rows could have been described with 'Kokou%' (without a leading %). You may want to test such a case to see if it will avoid the escalation to a table lock.
__________________________________________________
Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy