I am not able to understand the autotrace part where view part individual elapsed time is 728 micro seconds. How this was calculated , Please elaborate. Thankyou.
@hindimotivation52316 ай бұрын
One more doubt , in 3rd sort operation why it dont have any elpsed time as you said in video.
@TheMagicofSQL6 ай бұрын
I'm not sure exactly what you're referring to - please clarify. In any case, this value comes from the database measuring how long the operation took.
@TheMagicofSQL6 ай бұрын
Again, I'm not sure exactly what you're referring to.
@atulgupta9301 Жыл бұрын
Very well explanation
@chocOneOOne3 жыл бұрын
as usual Chris' lego game is on point
@amitkaushik35694 жыл бұрын
Nice explanation.
@albertogonzalez51144 жыл бұрын
very useful, thanks!
@a.useronly22664 жыл бұрын
Amazing
@VEERSINGH-er9so4 жыл бұрын
Great explanation !
@ikacherful3 жыл бұрын
Somewhat newbie DBA here. This information is beyond helpful - thank you so so much Chris!! I have a question about Oracle SQL Developer - is it possible to run autotrace without actually executing the SQL statement as well (I'm working with big tables in production)? I know it is possible through SQLPlus via traceonly option, just cannot tell if it's possible in Oracle SQL Developer as well. -Thank you
@TheMagicofSQL3 жыл бұрын
To get the plan's execution stats you have to run the SQL statement! set autotrace traceonly in SQL*Plus does execute the query, it just suppresses the output. The autotrace option in SQL Developer also executes the query, but there's no option to see the results. If you have a long-running query and you want to see the plan before it finishes, check out the SQL monitor. You can access this in SQL Dev via Tools -> Monitor SQL. Note you need appropriate licenses to use this!
@ikacherful3 жыл бұрын
@@TheMagicofSQL I see, I will definitely try this option. Thank you!!! I really appreciate it.