This is best video i have ever seen on explain plan
@patela214 жыл бұрын
full table scans are not always deceptive, considering the query not being optimized properly and hitting large tables multiple times. The explain plan would go for 'direct path read' wait events, so the optimizer will not put the query in the SGA buffer cache instead forces the execution entirely pinning against PGA. This favors the quickest output fetch with a bit downside to the I/O during the query execution.
@nonamechannel95786 жыл бұрын
Super explanation...Very very helpful and informative. To the point, well navigated and no crap..
@parakhagarwal71417 жыл бұрын
thanks a lot for a really informative video.. Can we have examples of queries which would result in different index access method and join methods ? That would really be helpful
@ztech46343 жыл бұрын
Very informative and helpful. Great job.
@tirud57828 жыл бұрын
Excellent information, very useful for beginners
@Gbd2796 жыл бұрын
a valuable follow up video would be to see these considerations being implemented
@С.Семенчук2 жыл бұрын
Cross join isn't a join method. It is a join type (like inner join) and commonly uses merge join method to accomplish
@performancetesting52276 жыл бұрын
Awesome Video. Lots of topics cleared.
@satyaprakashpandit19363 жыл бұрын
To the point explanation.
@vishnuofmillenium3 жыл бұрын
very well explained
@galeop5 жыл бұрын
Great stuff! 29:12 are we talking about bitmap *indexes* ?
@pankajmatani46484 жыл бұрын
Very Helpful Video. Thank you sir :)
@mukherjeer7 жыл бұрын
awesome explanation. thanks man. you rock
@kuipersam6 жыл бұрын
How to investigate this without access to production data? Is there something to 'copy statistics' from production to a test system?