SQLMaestros
SQLMaestros
  • 386
  • 1 014 992
SQL Server Wait Types – Part 1
Want access to all our free webinars? Become a free member at SQLMaestros.com and access all the free webinars. sqlmaestros.com/product/free-membership/
Want to access all our paid webinars? Become a Premium member at SQLMaestros.com and access all the premium content which includes paid webinars & premium tutorials. sqlmaestros.com/product/paid-membership/
Переглядів: 289

Відео

SQL Server CXConsumer Wait Type
Переглядів 21012 годин тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
Parsing SP_Server_Diagnostics Output
Переглядів 271День тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
SQL Server Ranking Functions - A Silent Guide
Переглядів 16414 днів тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
DELETING DUPLICATE ROWS
Переглядів 40921 день тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
SQL Server Performance Tuning Made Simple - Part 2
Переглядів 479Місяць тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
SQL Server Memory Utilization History
Переглядів 636Місяць тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
SQL Server Performance Tuning Made Simple - Part 1
Переглядів 805Місяць тому
Want access to all our free webinars? Become a free member at SQLMaestros.com and access all the free webinars. sqlmaestros.com/product/free-membership/ Want to access all our paid webinars? Become a Premium member at SQLMaestros.com and access all the premium content which includes paid webinars & premium tutorials. sqlmaestros.com/product/paid-membership/
SQL Server Plan Cache Memory Impact
Переглядів 489Місяць тому
Looking for comprehensive, deep-dive training on SQL Server Performance Tuning? Explore SQLMaestros All-In-One Performance Tuning Bundle. 5 courses at a highly discounted price. bit.ly/sqlmaestrosallinone The bundled content focuses on internals, troubleshooting, query tuning, performance optimization, tips, tricks, and loads of content from the real world.
How to watch contents of All-in-One Bundle
Переглядів 141Місяць тому
How to watch contents of All-in-One Bundle
How to subscribe All-in-One Bundle
Переглядів 85Місяць тому
How to subscribe All-in-One Bundle
Inefficient Index Seeks
Переглядів 310Місяць тому
Inefficient Index Seeks
Index Selection Mechanisms in SQL Server Part 1
Переглядів 551Місяць тому
Index Selection Mechanisms in SQL Server Part 1
CPU Utilization History
Переглядів 680Місяць тому
CPU Utilization History
SQL Server Indexing Strategy Puzzle
Переглядів 4892 місяці тому
SQL Server Indexing Strategy Puzzle
The Power of Indexes
Переглядів 4382 місяці тому
The Power of Indexes
SQL Server Query Optimizer - Lesser Known Things
Переглядів 5052 місяці тому
SQL Server Query Optimizer - Lesser Known Things
ASYNC_NETWORK_IO WAIT TYPE
Переглядів 5172 місяці тому
ASYNC_NETWORK_IO WAIT TYPE
Async Network IO Wait Type
Переглядів 2732 місяці тому
Async Network IO Wait Type
SQL Server Query Tuning Tools
Переглядів 8812 місяці тому
SQL Server Query Tuning Tools
Auto Statistics Update Threshold in SQL Server
Переглядів 4932 місяці тому
Auto Statistics Update Threshold in SQL Server
Clustered Index Seek Trivia in SQL Server
Переглядів 4682 місяці тому
Clustered Index Seek Trivia in SQL Server
Join Order by SQL Server Query Optimizer
Переглядів 8642 місяці тому
Join Order by SQL Server Query Optimizer
SQL Server Indexing Architecture - Part 2
Переглядів 4723 місяці тому
SQL Server Indexing Architecture - Part 2
Computing Estimated Operator Cost in SQL Server
Переглядів 4393 місяці тому
Computing Estimated Operator Cost in SQL Server
SQL Server Indexing Architecture - Part 1
Переглядів 9553 місяці тому
SQL Server Indexing Architecture - Part 1
Estimated IO Cost
Переглядів 4483 місяці тому
Estimated IO Cost
LIVE Feedback (SQL Server Performance Tuning Master Class (40 hours))
Переглядів 1683 місяці тому
LIVE Feedback (SQL Server Performance Tuning Master Class (40 hours))
Sample Content (SQL Server Performance Tuning Master Class (40 hours))
Переглядів 4873 місяці тому
Sample Content (SQL Server Performance Tuning Master Class (40 hours))
Compute Scalar Operator and Stream Aggregate in SQL Server
Переглядів 3803 місяці тому
Compute Scalar Operator and Stream Aggregate in SQL Server

КОМЕНТАРІ

  • @goksoy1305
    @goksoy1305 14 годин тому

    The primary reason for the different execution plans is the nature of the operators in the WHERE clause. The NOT IN condition in Query 1 necessitates a scan to check each row, while the equality condition in Query 2 allows for a direct seek to the matching rows.

  • @goksoy1305
    @goksoy1305 14 годин тому

    what is the difference

  • @claudineialbuquerque4775
    @claudineialbuquerque4775 4 дні тому

    Very good

  • @arghasen6535
    @arghasen6535 6 днів тому

    Q1 . Cluster Index scan will be used as "not in" clause exclude the values used from the all possible persontype values Q2. Index Seek will be used if table data are properly distributed across all the possible persontype else cluster Index scan will be used for huge number of rows .

  • @ssrakeshsharma
    @ssrakeshsharma 7 днів тому

    Hi Amit, Thanks for this Video, Shared this Video with one of my customer. Unfortunately likes on this video are less then Kachha Badam Dance🙂 - What is going in this world

  • @kingvinay1285
    @kingvinay1285 12 днів тому

    Very much helpful thanks

  • @benf101
    @benf101 13 днів тому

    "AddStress.cmd". Sometimes I think someone is running that file in my life.

  • @blackisblack22
    @blackisblack22 18 днів тому

    🙏🤫

  • @agnaldosalesasrs892
    @agnaldosalesasrs892 19 днів тому

    There r many ways to fix that U can ancapsulating But the shortest way is changing the AND to Where

  • @mocococo2877
    @mocococo2877 20 днів тому

    At ua-cam.com/video/jN6n1IwJKeQ/v-deo.html you say "... optimistic concurrency is good and it should be preferred over optimistic concurrency .... " Please, clarify that.

  • @Hunaismp
    @Hunaismp 21 день тому

    Ambigous column name

  • @steveearle9678
    @steveearle9678 21 день тому

    Because your city predicate is in your ON clause and Mumbai is in the left table

  • @gentlesoulolayemi3566
    @gentlesoulolayemi3566 22 дні тому

    Left outer join

  • @poojanpatel2437
    @poojanpatel2437 22 дні тому

    Left outer.

  • @barrowmusics
    @barrowmusics 23 дні тому

    It sometimes depends on the size of the data you are actually working with.

  • @goksoy1305
    @goksoy1305 24 дні тому

    thx ı knew row_number or group by but ı didnt know this method,so I learned a different perspective :D

  • @RahulSharma-vi3cs
    @RahulSharma-vi3cs 24 дні тому

    Thank you so much for this video , btw I have asked that question 😊

  • @NeerajPant-pp6qx
    @NeerajPant-pp6qx 26 днів тому

    Thanks for sharing that great knowledge!!!!

  • @pradeepdnm
    @pradeepdnm 26 днів тому

    thanks for this video. learned new method in XEvents.

  • @francismanalon
    @francismanalon 26 днів тому

    Hey man, big supporter here. Thanks for sharing this content!

  • @hutchm92
    @hutchm92 27 днів тому

    Thank you!

  • @ramkarthik7968
    @ramkarthik7968 28 днів тому

    Video is not clear

  • @uday10000singh
    @uday10000singh Місяць тому

    How we know which queries are using those resources.

  • @sansak9098
    @sansak9098 Місяць тому

    i still didn't understand,how usage information have been reflected,can anybody help me with query which he used to monitor usage.

  • @amigoscanariosdeclashofcla4972
    @amigoscanariosdeclashofcla4972 Місяць тому

    Nice , thanks

  • @pvksmaheeth8816
    @pvksmaheeth8816 Місяць тому

    This is by far the best video on indexing, i would like to know how to clear fragmentation on indexes automatically. (Rebuild or ReOrganize)

  • @tvskumar1990
    @tvskumar1990 Місяць тому

    How to improve performance of a view where only joins are used without any 'WHERE' available.

  • @AliciaMarkoe
    @AliciaMarkoe Місяць тому

    Thank you 🦋

  • @SadamKam
    @SadamKam Місяць тому

    using functions technically changing the way how indexes work on this column.

  • @RahulSharma-vi3cs
    @RahulSharma-vi3cs Місяць тому

    Memory history can be also seen in same manner ??

  • @architectingme
    @architectingme Місяць тому

    Non sargable

  • @MushtaqMomen
    @MushtaqMomen Місяць тому

    very helpful, like the way you speak...i was searching for update stats for very large table columns and how to manage tempdb growth...thnx anyways.

  • @Nur_Md._Mohiuddin_Chy._Toha
    @Nur_Md._Mohiuddin_Chy._Toha Місяць тому

    👍👍👍👍

  • @ITSupportOdisha
    @ITSupportOdisha Місяць тому

    Thanx a lot Sir

  • @rajasekharreddygongati2197
    @rajasekharreddygongati2197 Місяць тому

    What is mean by System idel process?

  • @abhay6276
    @abhay6276 Місяць тому

    Your videos are difficult to learn and digestive 😢

  • @jitendrarajbhar9286
    @jitendrarajbhar9286 Місяць тому

    Thank you very much

  • @marancibia1971
    @marancibia1971 Місяць тому

    in the predicate TerritoryID is the first column because its equality condition and SalesOrderID is the second for its inequality condition. It's the best combination for selectivity.

  • @minnrick7986
    @minnrick7986 Місяць тому

    You present a problem (an important, common one), a series of possible answers and.. subscribe to premium content to get the answer. This was nothing more than an ad. Thumbs down.

    • @SQLMaestros
      @SQLMaestros Місяць тому

      We record dozens of free videos & tutorials each week for the community - full length stuff. So sometimes a teaser/ad should not be a problem. Thumbs up to your feedback & thumbs up to our work.

  • @thecouple2023
    @thecouple2023 2 місяці тому

    Interesting information, I always keep my head burning on why SQL keeps raising its memory consumption. Earlier I thought it was some issue with my local system. Now I understood why. Thanks a lot.

  • @nicolashidalgo1888
    @nicolashidalgo1888 2 місяці тому

    Excelente!

  • @gurupradeep9648
    @gurupradeep9648 2 місяці тому

    Thanks brother

  • @ademolasanni4443
    @ademolasanni4443 2 місяці тому

    That's a good demo. So after capturing the wait type what next? Becos seeing the issue causing the slowness is good how to deal with it also matter. Thanks

  • @prasanthsathiyanarayanan
    @prasanthsathiyanarayanan 2 місяці тому

    calculation is new for me. Thanks Amit.

  • @user-zp5pq3pn5i
    @user-zp5pq3pn5i 2 місяці тому

    Loved this. It is amazing how the indexes work

  • @kanhakanpur2360
    @kanhakanpur2360 2 місяці тому

    Fantastic!

  • @kanhakanpur2360
    @kanhakanpur2360 2 місяці тому

    Great!

  • @shubhamsingh8044
    @shubhamsingh8044 2 місяці тому

    Since the first column in the index key defines the primary ordering of the data, a query filtering or sorting on the second column may not benefit from a clustered index seek because the index is primarily ordered by the first column. The query optimizer may choose alternative access methods, such as a full index scan or a table scan, depending on factors such as data distribution and cardinality.