SQL performance tuning and query optimization using execution plan

  Рет қаралды 247,652

techsapphire

techsapphire

Күн бұрын

Performance tuning begins with understanding execution plan and finding & fixing expensive operators one by one in below flow:
First Lazy spool: Lazy spool is most expensive operator among all, which happens because of duplicate aggregation. We can remove duplicate aggregation by temporary tables, cte, etc.
Second Hash match: which is always because of unsorted data. Which means either missing index or indexes are not properly utilized, which can be because of :
1. function use in join or where condition
2. First column of existing index is not part of where clause or join
We can address this by adding new index, fixing query to utilize existing index or altering index to new filter configurations.
Keylookup: Keylookup just indicate, that index is missing some data. We can easily resolve it by adding missing column to index key or include part. But there is a catch as, we don't have privilege to alter index all the time. So, some times, we cannot avoid keylookup.
Index Suggestion:
Index key columns are the one which are part of where clause or joins.
Index include columns are the one which are part of only selection.
Partition Elimination: we check if partition are getting eliminated in query or not. As sometimes even tables have partitions still query go for scan instead partition elimination.
A lot of times, I have seen, developer use different datatype in storedprocedure parameters which don't match to actual column. And end up in no partition elimination.
Two reasons why query is not eliminating partition:
1. Data type mismatch or function used on where clause or type casting
2. Partition key column is not part of where clause
BAD Views: Views sometimes becomes bad when developer don't alter them instead they join same table to view which is already part of view to get some extra data. Instead they should write new view or alter existing view to get extra columns
Minimizing sub queries: We can minimize sub queries, if subquries belong to same table to get different column using cross apply or outer apply.
Example we have to get most recent orderdate, order amount, order shipped date, etc for each customer. So instead of writing different sub query for each column, we can use cross apply or outer apply to get data in single query.
Scripts: drive.google.com/file/d/1RUNg...

Пікірлер: 332
@mohammedminhajulhaq5542
@mohammedminhajulhaq5542 3 жыл бұрын
We need to share this kind of videos to maximum people. This is much underrated in terms of views. A lot to learn from this video. Thank you sooo much for keeping it simple and understandable. We can't get this much of advise and knowledge after paying also. Attended some pluralsite videos of some SQL experts but didn't understand a bit but in this 1 video got so much of information. Thanks a ton once again. Keep it up good work 👍👍👍👍
@techsapphire
@techsapphire 3 жыл бұрын
Thanks. Note: I also provide commercial support. Please contact if needed. If you find this solution helpful than donate comfortable amount on papal to my email ID or link www.paypal.me/bimlamehla. Donation is not mandatory is it just request to support free tutorial.
@parthasarathiramachandran8189
@parthasarathiramachandran8189 Жыл бұрын
@@techsapphire can we have your contact number or whatsapp number/ email id
@srinubathina9096
@srinubathina9096 4 жыл бұрын
This is the best class in terms of SQL Performance Tuning. Thank You..
@techsapphire
@techsapphire 4 жыл бұрын
Glad you like it!
@kaustubhpradhan82
@kaustubhpradhan82 3 жыл бұрын
Extremely helpful. Searched a lot for help and video stands out to be unique. Thank you. :-)
@techsapphire
@techsapphire 3 жыл бұрын
Glad you find it good
@satheeshkandukurii5251
@satheeshkandukurii5251 4 жыл бұрын
Really awesome...pls do more videos on performance tuning
@venkatasumanbhavanasi6939
@venkatasumanbhavanasi6939 3 жыл бұрын
Hi yogesh, this is really helpful for developers who donno the concepts and tricks to optimize queries and simply writing the queries as their own which makes client in bad situation. This video helped me alot. Thank you..
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@mithunraj31
@mithunraj31 2 жыл бұрын
Really this is one of the BEST video ever, so easy to understand. Very very very helpful. Thanks a lot for this brilliant one.
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@palashmondal9088
@palashmondal9088 3 жыл бұрын
I asked to optimize query by product owner after that start watching your video, it help me a lot. Thank you so much!!
@techsapphire
@techsapphire 3 жыл бұрын
Glad it helped!
@kaushikkrishnan5828
@kaushikkrishnan5828 3 жыл бұрын
Amazing, super helpful to get a direction on how to go about optimizing queries
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@saikumarramisetty
@saikumarramisetty 4 жыл бұрын
Thank you so much for the awesome video, I got a clear idea about the Performance tuning
@techsapphire
@techsapphire 3 жыл бұрын
Glad it helped!
@NareshDama-qv3iu
@NareshDama-qv3iu 4 жыл бұрын
Very useful information.. thank you so much!!
@sharmavasundhara
@sharmavasundhara 5 ай бұрын
This is by far the best SQL query optimization videos I've watched! I'm going to share this with everyone I know who can benefit from this. Thanks @techsapphire 🙌🏽
@jagjeetrathore9122
@jagjeetrathore9122 4 жыл бұрын
i watched many videos , found this one awesome for beginners
@techsapphire
@techsapphire 4 жыл бұрын
Thank you for your feedback.
@prabasmessi
@prabasmessi 4 ай бұрын
Thank you so much for sharing the knowledge. Best explanation for query optimization i have seen till now.
@techsapphire
@techsapphire 18 күн бұрын
Glad it was helpful!
@priyankasarkar6600
@priyankasarkar6600 4 жыл бұрын
Awesome Sir..:) On point tutorial! Please make more videos on triggers, cluster, cursor.. Thanks in advance..:)
@techsapphire
@techsapphire 4 жыл бұрын
Sure thing! Keep learning :)
@mrkamranumer
@mrkamranumer 2 жыл бұрын
Wonderful and Excellent Knowledge based in-depth Performance Tuning Video
@techsapphire
@techsapphire 2 жыл бұрын
Glad you liked it!
@saurabhashok2857
@saurabhashok2857 2 жыл бұрын
Simply outstanding explanation. Thanks!
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@jaredlising-simplybrewedph
@jaredlising-simplybrewedph Жыл бұрын
Thank you so much for such detailed explanation! Appreciate it so much! 😊
@techsapphire
@techsapphire Жыл бұрын
Glad it was helpful!
@xx_ggplot2_xx
@xx_ggplot2_xx Жыл бұрын
Insanely good video. Helped for my DE interview
@techsapphire
@techsapphire Жыл бұрын
Glad it helped! I provide training as well.
@devarakondasankararao3802
@devarakondasankararao3802 2 жыл бұрын
Very excellent video .Thank you so much for this explanation.
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@anuragjains2195
@anuragjains2195 4 жыл бұрын
Nicely explained. Thank you very much!
@techsapphire
@techsapphire 4 жыл бұрын
Thank you for your feedback.
@user-zl4vf1pk8r
@user-zl4vf1pk8r 4 ай бұрын
Amazing tutorial on query tuning... thanks a lot
@radha040
@radha040 3 ай бұрын
Very informative and core knowledge for every level of SQL developer. Thank you
@techsapphire
@techsapphire 3 ай бұрын
Glad it was helpful!
@ravindark646
@ravindark646 3 жыл бұрын
Nice explanation and got clear Idea on the such things. Thanks :)
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@nitsz07
@nitsz07 Жыл бұрын
Thanks! Thanks a lot Yogesh for your time and efforts in this particular video. This helped me a lot..
@techsapphire
@techsapphire Жыл бұрын
Glad it helped
@pravaspatra3849
@pravaspatra3849 4 жыл бұрын
Its very helpful. Please share more videos
@Sk8erBhai
@Sk8erBhai Жыл бұрын
Great video, brother. Have learnt so much so quick
@techsapphire
@techsapphire Жыл бұрын
Glad to hear it!
@dishantrana341
@dishantrana341 9 ай бұрын
This is just amazing, going to share with all mates.
@techsapphire
@techsapphire 9 ай бұрын
Glad you find it helpful
@karanrewari6482
@karanrewari6482 3 жыл бұрын
amazing video!! very helpful, thanks!
@techsapphire
@techsapphire 3 жыл бұрын
Glad you found it helpful.
@mahaalsalman2323
@mahaalsalman2323 3 жыл бұрын
Thank you for good teaching you explained it very clearly
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@ranjitreddy6316
@ranjitreddy6316 3 жыл бұрын
Thanks Much For this video! Really appreciate it! :)
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@shreyadutta5817
@shreyadutta5817 2 жыл бұрын
Very informative... Brilliantly explained
@techsapphire
@techsapphire 2 жыл бұрын
Glad you liked it
@DD-dp6ge
@DD-dp6ge Жыл бұрын
Amazing, very well explained, thanks!
@techsapphire
@techsapphire Жыл бұрын
Glad it was helpful!
@karthikkeyan4460
@karthikkeyan4460 2 жыл бұрын
Timstamps for various topics covered.. 18:21 Hashmatch 23:54 KeyLookup
@ManOfAdventure2011
@ManOfAdventure2011 Жыл бұрын
Great tutorial! I learned a lot!
@techsapphire
@techsapphire Жыл бұрын
Glad it was helpful!
@dattakashiwale
@dattakashiwale Жыл бұрын
Excellent ! outstanding video., most of the concept were unknown.., really helped a lot., thanks a lot Bhai.., pls create more stuff like this..,
@techsapphire
@techsapphire Жыл бұрын
Thank you, I will
@dizssoftwareservices
@dizssoftwareservices Жыл бұрын
Very Good Lecture gives me so much clarity.
@techsapphire
@techsapphire Жыл бұрын
Glad it was helpful!
@vijayalakshmibadigeru4479
@vijayalakshmibadigeru4479 2 жыл бұрын
Really great video... We look forward to learn more ✌️
@techsapphire
@techsapphire 2 жыл бұрын
Glad you liked it
@ashutoshsrivastava2275
@ashutoshsrivastava2275 3 жыл бұрын
Thank you very much for all your effort.
@techsapphire
@techsapphire 3 жыл бұрын
Always welcome
@calvinball1
@calvinball1 2 жыл бұрын
This is an astoundingly good video
@techsapphire
@techsapphire 2 жыл бұрын
I'm glad you like it
@dbatexas
@dbatexas 3 жыл бұрын
thanks for details, video could be more in depth like why nested loop join vs hash join, what is lazy pool or eager spool/spills. but other than all good concepts and topics. it takes times to explain all details so we could give links for people to learn like nested loop runtime is O(n2) Vs merge join O(nLogN) etc etc
@techsapphire
@techsapphire 3 жыл бұрын
Thank you for your feedback. Reason why I haven't covered details about latches and waits and why nested loops, etc is, mostly I make video for intermediate learner to expert level. And if I add these stuff, video become confusing for them, I tried to cover in best lehman terms. But I agree for some viewer details make more sense, but mostly people I train are not good with basics so, difficult to bring them in same page.
@Latif127
@Latif127 3 жыл бұрын
Very helpful tutorial, thank you.
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@ganeshvarma370
@ganeshvarma370 2 жыл бұрын
Learned So much, Keep doing more videos. Respect++
@techsapphire
@techsapphire 2 жыл бұрын
Thanks, will do!
@ashwineemehta9449
@ashwineemehta9449 Жыл бұрын
I went though this video and found it very useful.
@techsapphire
@techsapphire Жыл бұрын
Glad it was helpful!
@maruthibachu8854
@maruthibachu8854 2 жыл бұрын
Really its awesome.. Its helped lot and easy to understand.. please make more videos. thank you
@techsapphire
@techsapphire 2 жыл бұрын
Thank you, I will
@deepak21000
@deepak21000 Жыл бұрын
Excellent performance tuning tutorial
@techsapphire
@techsapphire Жыл бұрын
Glad you liked it!
@nandiniguntur4509
@nandiniguntur4509 2 жыл бұрын
Good job. The explanation is very succint
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@SandeepYadav-vm5hd
@SandeepYadav-vm5hd 2 жыл бұрын
Amazing Video Very useful !!!
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@codearabawy
@codearabawy 2 жыл бұрын
That's awesome, thank you very much!
@techsapphire
@techsapphire 2 жыл бұрын
You're very welcome!
@waqarbaig1402
@waqarbaig1402 4 жыл бұрын
this is realy good picture of optimization .. also please add sql profiler in terms of optmization
@techsapphire
@techsapphire 4 жыл бұрын
Thank you for your feedback. I will add session on sql profiler too.
@kjkanishk7575
@kjkanishk7575 3 жыл бұрын
thanks ... :) ... really great presentation.
@techsapphire
@techsapphire 3 жыл бұрын
Glad you liked it!
@niha46
@niha46 3 жыл бұрын
nice explanation, very helpful.
@techsapphire
@techsapphire 3 жыл бұрын
Glad it was helpful!
@poojagarg5673
@poojagarg5673 Жыл бұрын
Thanks a lot for sharing this video, it's very informative and helped me understand many concepts. Right now, I am looking at a complex query plan which is timing out(query) pretty often. That execution plan has many operations like Index seek (NonClusered), Clustered Index Scan, Clustered Index Seek etc. Please explain these terms as well. These are quite confusing when reading the definition of these.
@techsapphire
@techsapphire Жыл бұрын
I provide 1 to 1 session which comes up with a fee to clear your all doubts, if you are interested kindly reach me on yogesh.mehla@gmail.com
@parixitsinhchauhan5186
@parixitsinhchauhan5186 Жыл бұрын
nicely explained every topic. Good Video
@techsapphire
@techsapphire Жыл бұрын
Glad you liked it
@srikanthkurra9513
@srikanthkurra9513 2 жыл бұрын
Thanks for the complete explanation
@techsapphire
@techsapphire 2 жыл бұрын
Glad it was helpful!
@Shad0wMonkey5
@Shad0wMonkey5 Жыл бұрын
This was such a good video I’m shocked ahahaha! Do you have any more optimisation tips and how diagnosing slow queries?
@techsapphire
@techsapphire Жыл бұрын
Yes I do! Alot are on my channel kindly check, I also provide commercial sessions
@user-td6hr7qd1b
@user-td6hr7qd1b 9 ай бұрын
Thanks for your detail explanation
@techsapphire
@techsapphire 9 ай бұрын
Glad it was helpful!
@ManishPurohit-gl6lq
@ManishPurohit-gl6lq Жыл бұрын
It's a brilliant explanation.
@techsapphire
@techsapphire Жыл бұрын
Glad you liked it
@haribabunaiduyasanoor5233
@haribabunaiduyasanoor5233 Жыл бұрын
Excellent session Sir!!
@techsapphire
@techsapphire Жыл бұрын
Glad you liked it!
@gokuls3000
@gokuls3000 10 ай бұрын
this is best video for performance tuning
@techsapphire
@techsapphire 9 ай бұрын
Thank you for positive feedback
@rickmemmer5625
@rickmemmer5625 3 жыл бұрын
Exceptional presentation!! Much appreciated!! :o)
@techsapphire
@techsapphire 3 жыл бұрын
Thank you kindly! Note: I also provide commercial support. Please contact if needed. If you find this solution helpful than donate comfortable amount on papal to my email ID or link www.paypal.me/bimlamehla. Donation is not mandatory, it is just a request to support free tutorials.
@bluerays5384
@bluerays5384 8 ай бұрын
very explained Sir, Thank you for the video.
@techsapphire
@techsapphire 8 ай бұрын
Glad it helped
@bluerays5384
@bluerays5384 5 ай бұрын
I watched your video might be 4th or 5th time today, N every time I learn something new n brings my knowledge to next level..Very well explained sir. Keep Sharing such a live scenario n knowledge..This helped me lot..lots of love sir #bow ❤❤❤❤
@Rprakaash
@Rprakaash 5 ай бұрын
have you used sql sentry plan explorer? what is your opinion about it. I find it really facinating. I wish they had more vidoes on that.
@P5toraskar1986
@P5toraskar1986 2 жыл бұрын
Superb information.
@techsapphire
@techsapphire 2 жыл бұрын
Thanks a lot
@jegadeesr7213
@jegadeesr7213 3 жыл бұрын
While optimizing T-SQL Queries, in the logical query execution plan, what are the top 3 operators which we should eliminate / optimize?
@techsapphire
@techsapphire 3 жыл бұрын
Lazy spool one and only other are more dependent on situation
@yogisawant9891
@yogisawant9891 2 жыл бұрын
Nice video. Thank you sir
@techsapphire
@techsapphire 2 жыл бұрын
Most welcome
@yashpatil2536
@yashpatil2536 Жыл бұрын
Amazing Thank you so much!
@techsapphire
@techsapphire Жыл бұрын
Glad you like it!
@dishaverma3522
@dishaverma3522 2 жыл бұрын
Thanks allot it's really helpful
@techsapphire
@techsapphire 2 жыл бұрын
You're welcome!
@Firatayrilik
@Firatayrilik 3 жыл бұрын
Hello. Thanks for the video. What exactly 'Double Aggregation' means? I mean I only see one aggregation query which is MAX in first query and also in the second. Can you please explain?
@techsapphire
@techsapphire 3 жыл бұрын
it is duplicate aggregation, not double aggregation. Kindly re refer video again
@mallikarjuna9209
@mallikarjuna9209 2 жыл бұрын
to the point. Thank you sir!!!!!
@techsapphire
@techsapphire 2 жыл бұрын
Glad it helped
@Jkprasad
@Jkprasad 4 жыл бұрын
outstanding Sir
@techsapphire
@techsapphire 4 жыл бұрын
Many thanks
@aloksinha6342
@aloksinha6342 4 жыл бұрын
Very nice explanation.One of the best.Could you please share the scripts also..
@techsapphire
@techsapphire 4 жыл бұрын
Please share your email
@amiya217
@amiya217 3 жыл бұрын
good explanation..
@techsapphire
@techsapphire 3 жыл бұрын
Thanks and welcome
@kaushikbudi8819
@kaushikbudi8819 2 жыл бұрын
Hello Sir great video just had a small doubt how would the performance be if we used last value for the example problem for minimizing sub queries
@techsapphire
@techsapphire 2 жыл бұрын
single query will not have major impact, its important to have most of the queries to be optimized to ensure good performance
@rajeshchittiprolu5281
@rajeshchittiprolu5281 4 жыл бұрын
short and sweet. Well explained brother. Would you mind sending me the presentation.
@techsapphire
@techsapphire 4 жыл бұрын
Kindly share your email
@sid5201
@sid5201 4 жыл бұрын
Hash Join is not always bad, especially dealing with very large tables.
@techsapphire
@techsapphire 4 жыл бұрын
There is no term like always bad. It depends, if you are joining complex views, you may not be able to avoid hash join. So SQL decision is good, we have to form are query accordingly.
@sid5201
@sid5201 4 жыл бұрын
@@techsapphire agree
@etlpro4940
@etlpro4940 Ай бұрын
Awesome, just below excellent,
@techsapphire
@techsapphire Ай бұрын
Thank you so much 😀
@krishnakumargupta741
@krishnakumargupta741 3 жыл бұрын
thx you sir very nice video
@techsapphire
@techsapphire 3 жыл бұрын
Most welcome
@anonymous8633
@anonymous8633 2 жыл бұрын
how to avoid key lookup when PK_clusteredIndex seek is in the exec. plan? I know if, non clustered on exec. plan, I can add those columns to the index but what to do with key lookup and PK_seek?
@techsapphire
@techsapphire 2 жыл бұрын
lookup are tricky to fix, depends on your instinct to fix them as they can cause more locks for insert delete and update if you add more columns
@gabrielegbenya7479
@gabrielegbenya7479 4 жыл бұрын
Hi Yogesh! Thank you for the lecture; it was very educative, can you please share me the script and ppt presentation . Also do we need to SET STATISTICS IO OFF after the query optimization project? Thank you.
@techsapphire
@techsapphire 4 жыл бұрын
Sure, please share your email. You don't need to set it off as it is session level. So moment you close query window, it is gone
@krishanajangid1763
@krishanajangid1763 3 жыл бұрын
Hi yogesh, thanks you for the lecture. It was very educative. Please share the ppt, quries, and database back used in the video. My email id is krishanajangid2011@gmail.com.
@katabathinadamodar732
@katabathinadamodar732 3 жыл бұрын
@@techsapphire have you send to damukatabathina@gmail.com also...thanks
@ravindrabisht7520
@ravindrabisht7520 2 жыл бұрын
@@katabathinadamodar732 if u got script, would u, please share with me?
@ravindrabisht7520
@ravindrabisht7520 2 жыл бұрын
@@krishanajangid1763 if u got script, would u, please share with me?
@PrakashPatil-dw5be
@PrakashPatil-dw5be 3 жыл бұрын
good information...
@techsapphire
@techsapphire 3 жыл бұрын
Thanks
@bharath.vkumar5941
@bharath.vkumar5941 3 жыл бұрын
really like this video........may get any suggestions currently, i working for my thesis on the topic of RESEARCH ON AI APPLICATION FOR OPTIMIZATION OF THE SQL QUERIES..
@techsapphire
@techsapphire 3 жыл бұрын
Is your research only SQL Server or other databases as well?
@martinhedmanjohnson6687
@martinhedmanjohnson6687 3 жыл бұрын
Hi Yogesh, at one point you mention "group before, not after" what do yuo mean by that?
@techsapphire
@techsapphire 3 жыл бұрын
I am confused about reference, if you want to discuss in detail, kindly reach me on skype yogesh.mehla@live.com
@Ali-or8wb
@Ali-or8wb 2 жыл бұрын
well explained.
@techsapphire
@techsapphire 2 жыл бұрын
Glad you found it helpful.
@sandeepkumar-ol5lg
@sandeepkumar-ol5lg Жыл бұрын
Great content, as you mentioned it’s one out of two parts, could you please comment the second video link here
@techsapphire
@techsapphire Жыл бұрын
Post this video, there are many videos on how to capture expensive queries etc. You can check
@surupgurugm2523
@surupgurugm2523 2 жыл бұрын
AWESOME 👌
@techsapphire
@techsapphire 2 жыл бұрын
Thanks 🤗
@Santosh-bx2ub
@Santosh-bx2ub 6 ай бұрын
Thanks a lot..
@dinsharma1409
@dinsharma1409 2 жыл бұрын
What version is the NorthWind database? Mine doesn't have the 'Student' column. Would you please paste the URL here to get the same Database you have on your presentation?
@techsapphire
@techsapphire 2 жыл бұрын
follow link in description for database backup
@dinsharma1409
@dinsharma1409 2 жыл бұрын
@@techsapphire Where is the link?
@PrakashPatil-dw5be
@PrakashPatil-dw5be 3 жыл бұрын
I have a table with more than 100 columns, so how many indexes can create for a single table?
@techsapphire
@techsapphire 3 жыл бұрын
there is no hard rule for it, depends upon you infrastructure and also sql version. Enterprise can go manage crazy load of indexes. Index should be created sensibly.
@ArdianUmam
@ArdianUmam 4 жыл бұрын
Thanks so much for the great video! Where can I get the slide and the script?
@techsapphire
@techsapphire 4 жыл бұрын
Kindly share your email for it.
@ArdianUmam
@ArdianUmam 4 жыл бұрын
techsapphire : ardianumam@gmail.com. Thanks in advance.
@SN-zr3rf
@SN-zr3rf 3 жыл бұрын
Sir, I need this script and requesting you to forward sheiknainar@yahoo.co.in
@sajidbhat2374
@sajidbhat2374 Жыл бұрын
thanks is amazing
@techsapphire
@techsapphire Жыл бұрын
Welcome 😊
@kiran3243
@kiran3243 2 жыл бұрын
nice video sir
@techsapphire
@techsapphire 2 жыл бұрын
Thanks and welcome
@010_it_daithiyasudanks3
@010_it_daithiyasudanks3 2 ай бұрын
I am trying to reproduce the same steps in my machine. I am not able to find Student table under Northwind database. Can you please where I can find the scripts for that? This video is starting to be very useful for me.
@RajeshKumar-nc5gg
@RajeshKumar-nc5gg Жыл бұрын
Very very nice
@techsapphire
@techsapphire Жыл бұрын
Thanks a lot
@gauravmodi1061
@gauravmodi1061 4 жыл бұрын
Thank you for the lecture helped me alot can you please share this presentation
@techsapphire
@techsapphire 4 жыл бұрын
please share your email
@techsapphire
@techsapphire 4 жыл бұрын
@Sunil mehta please share your email
@techsapphire
@techsapphire 4 жыл бұрын
@Sunil mehta Sent, please check your email
@el-mehdichouki6355
@el-mehdichouki6355 2 жыл бұрын
Hello Yogesh sir, Can we get the ppt, DB and the scripts ? Thanks. I learned a lot from this video.
@techsapphire
@techsapphire 2 жыл бұрын
Kindly share your email
@el-mehdichouki6355
@el-mehdichouki6355 2 жыл бұрын
​@@techsapphire i sent you a mail
@pavankumarcheruvu8207
@pavankumarcheruvu8207 Жыл бұрын
Hi sir, It was nice video. I have one doubt while explaining you're telling everytime about sql server but I'm not using sql server in my project I'm using sql developer tool and I'm working as sql developer, So it is same for all ? Please reply me.
@techsapphire
@techsapphire Жыл бұрын
Yes, correct. Performance optimization using query tuning is mainly job of SQL Dev not DBA
@nilamsherkar
@nilamsherkar 4 ай бұрын
can i get this database to practice the questions
@gomathyelango5574
@gomathyelango5574 Жыл бұрын
Is this query tuning applicable to oracle database as well?
@techsapphire
@techsapphire Жыл бұрын
yes query mistakes are common
@sqlservertutorialin3minute485
@sqlservertutorialin3minute485 2 жыл бұрын
Nice one
@techsapphire
@techsapphire 2 жыл бұрын
Thanks for watching
@afzaalawan
@afzaalawan 3 жыл бұрын
excellent
@techsapphire
@techsapphire 3 жыл бұрын
Many many thanks
SQL Server Performance Tuning Made Easy - Pinal Dave | Craft 2019
47:13
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
Does size matter? BEACH EDITION
00:32
Mini Katana
Рет қаралды 18 МЛН
The five-step guide to SQL tuning | CloudWorld 2022
25:59
Oracle
Рет қаралды 18 М.
SQL Server Execution Plan Operators
42:07
Brent Ozar Unlimited
Рет қаралды 77 М.
SQL Server Performance Tuning Lesson Part 1- In Amharic !
47:49
BARO TECHNOLOGIES (ባሮ)
Рет қаралды 3,8 М.
How to clear SQL Server DBA interview?
35:04
techsapphire
Рет қаралды 47 М.
How to Understand the SSMS Execution Plan
6:52
Database Star
Рет қаралды 2,3 М.
SQL Query Optimization. Why is it so hard to get right?
1:39:24
Brent Ozar Unlimited
Рет қаралды 35 М.
Watch Brent Tune Queries - SQLSaturday Oslo
1:01:54
Brent Ozar Unlimited
Рет қаралды 43 М.