No video

SQL Server Execution Plan Basics

  Рет қаралды 53,016

Kevin Hill

Kevin Hill

Күн бұрын

Пікірлер: 54
@USA_to_Asia_in_2024
@USA_to_Asia_in_2024 2 ай бұрын
This is Pure Gold (as Manosphere Highlights Daily channel would say).
@Kevin3NF
@Kevin3NF 2 ай бұрын
Hope it helps you :)
@steveabba8463
@steveabba8463 2 жыл бұрын
Thanks Kevin for the simplicity and examples!!!
@Kevin3NF
@Kevin3NF 2 жыл бұрын
You're very welcome!
@shenidan2023
@shenidan2023 3 жыл бұрын
Many thanks for posting. Surprised the likes and views are so low but for me it's been very useful .
@shilk4301
@shilk4301 2 жыл бұрын
This is the best video I have seen . Easy to understand . Just started to learn and was lost . This helped me a lot . Thank you 🙏
@Kevin3NF
@Kevin3NF 2 жыл бұрын
You're very welcome!
@ManishChopra
@ManishChopra 5 жыл бұрын
Right to left and from top to bottom. Thanks kevin!
@isaguclu941
@isaguclu941 4 жыл бұрын
The best explanation I have seen! I can't thank you enough for it.
@brunovecchietti
@brunovecchietti 3 жыл бұрын
Finally I understood execution plans. Thanks!
@Kevin3NF
@Kevin3NF 3 жыл бұрын
Great to hear! That barely scratched the surface...this is everything: www.red-gate.com/simple-talk/books/sql-server-execution-plans-third-edition-by-grant-fritchey/
@jatindersingh2241
@jatindersingh2241 3 жыл бұрын
wow, you explained everything i was looking for a while , Thanks a lot
@Kevin3NF
@Kevin3NF 3 жыл бұрын
Glad it was helpful!
@user-uf9fj9or6w
@user-uf9fj9or6w 5 ай бұрын
omg you saved my energy and everything thanks alot
@Kevin3NF
@Kevin3NF 3 ай бұрын
Glad it helped!
@simusprime
@simusprime 5 жыл бұрын
This is exactly what I have been working on the last 2 weeks! Nice breakdown!
@Kevin3NF
@Kevin3NF 5 жыл бұрын
Working on such a video, or learning to read Plans?
@simusprime
@simusprime 5 жыл бұрын
@@Kevin3NF Im going through our software and optimizing queries. Especially missing indexes.
@Kevin3NF
@Kevin3NF 5 жыл бұрын
@@simusprime Awesome! Good luck...and don't over-index! Run an "Unused Index" query as well to look for possible dead weight.
@menasheaharonian9183
@menasheaharonian9183 2 жыл бұрын
Very clearly put, thanks. Looking for more of your examples and explanations
@JaswantSingh-di8nu
@JaswantSingh-di8nu 3 жыл бұрын
Very well explained with examples. Thank you, Kevin!
@Kevin3NF
@Kevin3NF 3 жыл бұрын
Very welcome!
@Surianiaziz
@Surianiaziz 4 жыл бұрын
Great example with clear explanation. Definitely a subscribe!
@selvamkumar1982
@selvamkumar1982 5 жыл бұрын
Thanks Kevin... Can u post performance tuning in wild card searches....
@Jerry-zf3cn
@Jerry-zf3cn 5 жыл бұрын
Would have been more helpful to put that link to your other video in your summary where it could have been clickable...
@Kevin3NF
@Kevin3NF 5 жыл бұрын
Thanks Jerry...I have added the link to the description of this one
@sridhartn83
@sridhartn83 4 жыл бұрын
Very nicely explained, thanks.
@avinashsahu4853
@avinashsahu4853 4 жыл бұрын
You are awesome!!! looking for this from a long time.. Simple and Great explanation
@oleksandrbondarenko1129
@oleksandrbondarenko1129 4 жыл бұрын
Thank you for the good explanation and the examples!
@tobytr
@tobytr 4 жыл бұрын
Well done, very clear explanation
@tonycovarrubias5931
@tonycovarrubias5931 5 жыл бұрын
This is exactly what I was looking for.
@Kevin3NF
@Kevin3NF 5 жыл бұрын
Awesome! You should get Grant Fritchey's newest edition of his query plan book...
@DavidGilden
@DavidGilden 4 жыл бұрын
Well done, I actually learned something!
@krishnakanthlenka2323
@krishnakanthlenka2323 4 жыл бұрын
Excellent Explanation. What if there is no clustered index or Primary column. Will it cost more to search another column which is LastAccessDate which is not included in the non clustered index and also query uses non clustered index and is it look for look up column by that time ?
@Kevin3NF
@Kevin3NF 4 жыл бұрын
No Clustered Index makes the table a HEAP, which will almost always be harder to search for extra columns that are not in the NC index it is using now. www.brentozar.com/blitz/heaps-tables-without-primary-key-clustered-index/
@krishnakanthlenka2323
@krishnakanthlenka2323 4 жыл бұрын
Thank you Kevin for your valuable time.
@hank91918
@hank91918 4 жыл бұрын
great stuff, thanks Kev!
@abdulkhadershaik4738
@abdulkhadershaik4738 4 жыл бұрын
Good explanation..thanks
@Kevin3NF
@Kevin3NF 4 жыл бұрын
Glad you liked it
@MasterBeastieshow
@MasterBeastieshow 5 жыл бұрын
Kevin Good job. Please upload more videos
@tabs5375
@tabs5375 5 жыл бұрын
Brilliant video :) Quick question, what would be the best way to optimise a query that uses wildcards? E.g. select * from table where name like 'Kevin%'; Would you have to reevaluate the query to see if bringing back all the Kevins is the right approach?
@Kevin3NF
@Kevin3NF 5 жыл бұрын
Thanks Ryan! You would want a non-clustered index on [name] for a 'Kevin%'...and you might see an index scan instead of a seek, depending on how many variations of Kevin there are. If you try '%Kevin%', your index will no be used. That leading wildcard changes everything. Always test and evaluate periodically. Missing and Unused index queries are my favorite ways to evaluate my index strategy
@Monty6874
@Monty6874 4 жыл бұрын
Awesome video.
@kusalrathnayake2264
@kusalrathnayake2264 4 жыл бұрын
Thank you. Good Job.
@Akshay-Raut
@Akshay-Raut 4 жыл бұрын
Are the cost of each operation accumulated from right to left or are they independent ?
@Kevin3NF
@Kevin3NF 4 жыл бұрын
Each operator has its own cost, and the entire query is shown as a cost in the query stats DMVs: www.scarydba.com/2017/02/20/estimated-costs-queries/
@ashwinghorpade5917
@ashwinghorpade5917 5 жыл бұрын
best explanation
@KumarAnalytic
@KumarAnalytic 5 жыл бұрын
Thanks sir, I'm from India
@TheNanamimijojo
@TheNanamimijojo 4 жыл бұрын
if cost =20% for stored proedure this good or not
@Kevin3NF
@Kevin3NF 4 жыл бұрын
There is no way to tell...it totally depends on what the procedure is doing, and how the Query Optimizer decide it is going to execute the code in the proc, get the data, allocate memory, etc.
@TheNanamimijojo
@TheNanamimijojo 4 жыл бұрын
@@Kevin3NF i mean excution plan the estimaton cost is 20%
@AAA-pt7ix
@AAA-pt7ix 4 жыл бұрын
hi
@aangfahar4704
@aangfahar4704 3 жыл бұрын
10:27
@ankitabillore
@ankitabillore 4 жыл бұрын
This is very helpful, Thank you.
SQL Server Performance Tuning Made Easy - Pinal Dave | Craft 2019
47:13
SQL Server Execution Plan Operators
42:07
Brent Ozar Unlimited
Рет қаралды 78 М.
Matching Picture Challenge with Alfredo Larin's family! 👍
00:37
BigSchool
Рет қаралды 52 МЛН
What will he say ? 😱 #smarthome #cleaning #homecleaning #gadgets
01:00
SCHOOLBOY. Последняя часть🤓
00:15
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 16 МЛН
Index and Execution Plan basics
15:08
Kevin Hill
Рет қаралды 7 М.
Microsoft SQL Server Performance Tuning, Live
54:30
Brent Ozar Unlimited
Рет қаралды 114 М.
SQL Server Execution Plan Operators
11:15
Bert Wagner
Рет қаралды 23 М.
What's that Garbage in My Execution Plan? (Dear SQL DBA Episode 27)
17:48
Troubleshoot Real-World Scenarios with Extended Events
20:31
SQLBits
Рет қаралды 1,7 М.
SQL performance tuning and query optimization using execution plan
49:23
How to Read an Execution Plan: Databases for Developers: Performance #1
9:34
How to Understand the SSMS Execution Plan
6:52
Database Star
Рет қаралды 3,4 М.
Matching Picture Challenge with Alfredo Larin's family! 👍
00:37
BigSchool
Рет қаралды 52 МЛН