Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
.
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
-- 10g2+
prompt Display execution plan for last statement for this session from library cache...
-- select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST +COST +PEEKED_BINDS'));
-- this is 10gR1 command (or @x101.sql)
--
-- select * from table(dbms_xplan.display_cursor(null,null,'RUNSTATS_LAST'));
-- in 9.2 use @xm <hash_value> <child_number>
-- <child_number> can be % if you want all children
def _x_temp_env=&_tpt_tempdir/env_&_tpt_tempfile..sql
def _x_temp_sql=&_tpt_tempdir/sql_&_tpt_tempfile..sql
set termout off
store set &_x_temp_env replace
save &_x_temp_sql replace
set termout on
-- 12c ADAPTIVE:
--select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST +PEEKED_BINDS +PARALLEL +PARTITION +COST +BYTES +ADAPTIVE'))
-- 19c HINT_REPORTING:
-- select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST +PEEKED_BINDS +PARALLEL +PARTITION +COST +BYTES +HINT_REPORT'))
select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST +PEEKED_BINDS +PARALLEL +PARTITION +COST +BYTES'))
where
plan_table_output not in ('-----', 'Note')
and plan_table_output not like ('%- Warning: basic plan statistics not available. These are only collected when:%')
and plan_table_output not like ('%* hint _gather_plan_statistics_ is used for the statement or%')
and plan_table_output not like ('%* parameter _statistics_level_ is set to _ALL_, at session or system level%');
set termout off
@/&_x_temp_env
get &_x_temp_sql
set termout on