Parameter Sensitive Plan optimization - SQL in Sixty Seconds 200

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

ความคิดเห็น • 25

  • @savananjaria9169
    @savananjaria9169 ปีที่แล้ว +2

    “If you like what you see here…” - Always love to see such informative and creative content here. Congratulations on your 200th video gem 🎉

    • @PinalDaveSQLAuthority
      @PinalDaveSQLAuthority  ปีที่แล้ว +1

      Thank you so so much. You always motivate me. I found myself because of your mentorship.

  • @tanvirrahmantech
    @tanvirrahmantech ปีที่แล้ว +2

    i have done probably 3 of your course in pluralsight.very good tutorial.helped me learn a lot

  • @TheBrentOzar
    @TheBrentOzar ปีที่แล้ว +2

    Welcome back! Tell the artist I said hi. 😆

    • @PinalDaveSQLAuthority
      @PinalDaveSQLAuthority  ปีที่แล้ว +1

      Thank you so much. I am very much motivated. The artist is also very happy to hear from you too - super happy!

  • @MiningForPies
    @MiningForPies ปีที่แล้ว +2

    Great to see you back Pinal.

  • @moizsyed465
    @moizsyed465 ปีที่แล้ว +1

    Nice to see you after a long time

  • @stevefatland7704
    @stevefatland7704 ปีที่แล้ว +2

    Van Gogh. Good video - thank-you, Pinal!

  • @oivvv9218
    @oivvv9218 ปีที่แล้ว +2

    a really good feature. but guessing it will take a while before SQL Server 2022 gets adopted in a few of our systems :)

  • @avinashrauniyar3784
    @avinashrauniyar3784 ปีที่แล้ว +1

    Pinal dave, Which index have you created, is it clustered or non-clustered index? Requesting to clarify on it. Got it is the nonclustered index created on a heap as per the execution plan.

  • @undergraduate6050
    @undergraduate6050 ปีที่แล้ว +1

    Ty Dave Sir.
    I want to learn sql server from you.
    Do you provide any courses?

  • @TheANKUSHVIDEOYOUTUB
    @TheANKUSHVIDEOYOUTUB ปีที่แล้ว +1

    Any plan on Synapse SQL?

  • @goodjuanma
    @goodjuanma ปีที่แล้ว +1

    Table Scan in the second query execution plan?

    • @PinalDaveSQLAuthority
      @PinalDaveSQLAuthority  ปีที่แล้ว +1

      Yeah

    • @goodjuanma
      @goodjuanma ปีที่แล้ว

      @@PinalDaveSQLAuthority Wouldn't that be terrible for execution performance? This plan seems to get 40% of the total execution cos versus the previous, seemingly equal, 20%.

    • @MiningForPies
      @MiningForPies ปีที่แล้ว

      @@goodjuanma no.
      In the second execution plan, using the index would have resulted in hundreds of thousands of key lookups, essentially a table scan in a loop. Scanning the table is far, far more efficient in this case.