Search notes:

Oracle: DBA_SQL_PLAN_DIR_OBJECTS

select
  obj.object_name,
  obj.subobject_name,
  dir.reason,
  dir.created,
  dir.type,
  obj.object_type
from
  dba_sql_plan_dir_objects obj   join
  dba_sql_plan_directives  dir on obj.directive_id = dir.directive_id
where
  obj.owner = 'RNYFFENEGGER'
order by
  dir.created desc;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/sql/plan/dir_objects/joins.sql

See also

dba_sql_plan_directives
SQL plan directives

Index