Index Tuning to Avoid Blocking

Поділитися
Вставка
  • Опубліковано 26 лис 2024

КОМЕНТАРІ • 10

  • @agusumriadi2264
    @agusumriadi2264 Рік тому

    Thx mate, finally I found what I looking for 👏

  • @blackisblack22
    @blackisblack22 Рік тому

    Thanks for the tip.

  • @krupapatel6713
    @krupapatel6713 Рік тому +1

    @8:53 - Clustered index needs to scan each data page on leaf node and fetch its matching record or not? Index Scan
    @13:33 - Non cluster fix problem. Index seek. Find address line on leaf node and get corresponding data from base table

  • @saiabhilash3151
    @saiabhilash3151 Рік тому

    Learnt a new thing sir .Thanks for the video

  • @juancarlosvasquezgarcia2896

    excelent thanks !!!

  • @hd11_88
    @hd11_88 Рік тому

    Hi Amit, Always love the way you are explaining. How about enabling RCSI for the database? I'm pretty sure, you had thought of it but would you be kind to explain the limiting factors that stopped you to turn it on? Thanks.

  • @ahmad-murery
    @ahmad-murery Рік тому

    Very informative, and I really did learn something here,
    Now, what if we're selecting the same rows we're updating, we'll hit a deadlock again right?
    I'm saying that because I hit a deadlock in the past on a MariaDB sql server, the problem was very similar to what you've just demonstrated here but in my case I was extracting some data from a record while an update transaction still running on the same record.
    the problem was not happening all the time and after a lot of time diagnosing/troubleshooting I finally found that in some scenarios the transaction was not committed.
    Thanks Amit! please keep it up

  • @MudassarMehmood-r2j
    @MudassarMehmood-r2j Рік тому

    well explained Sir

  • @rajeshbehera5730
    @rajeshbehera5730 Рік тому

    Nice explanation 😊

  • @MostafaElmasryDBA
    @MostafaElmasryDBA Рік тому

    Thanks for your great video, but I have another case for locking sometimes we have Updated on table X and select on table Y and the select is locked by update😱 although both transactions are executing in different tables what is your advice on this case?