Odi's astoundingly incomplete notes
New entries | CodeFormat Oracle plan_table
Here is a simple query that formats Oracle's
plan_table
in a useful way. No need for complex PLSQL scripts.select cost, RPAD(' ', 3*depth,' ') || operation operation, object_name, options from plan_table order by id;
Add comment