When I get the TKPROF output, I can see the parse, execute, fetch, disk, etc.
call count cpu elapsed disk query current rows
---- ------- ------- --------- -------- -------- ------- ------
Parse 1 0.16 0.29 3 13 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 1 0.03 0.26 2 2 4 14
Misses in library cache during parse: 1
But getting the TKPROF is not as fast as getting the autotrace from the SQL Developer.
So, are there any equivalent columns corresponding to these columns in TKPROF output? It can be the execution plan output our in the V$STATNAME area below. If yes, which ones are they? Because when I check, I see a couple different parses. And I don't see anything like fetch in the v$statname.
And if there are the equivalents, will the values of TKPROF and AUTOTRACE be equal or different?
Thanks in advance.