Search notes:

Oracle: DBA_SQL_PLAN_DIRECTIVES

select
  directive_id,
  type,
  enabled,
  auto_drop,
  reason,
  to_char(created      , 'dd.mm.yy hh24:mi:ss') created,
  to_char(last_modified, 'dd.mm.yy hh24:mi:ss') last_modified,
  to_char(last_used    , 'dd.mm.yy hh24:mi:ss') last_used
--notes
from
  dba_sql_plan_directives
order by
  created desc;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/sql/plan/directives/show.sql

See also

dba_sql_plan_dir_objects
SQL plan directives

Index