【TUNE_ORACLE】定制化执行计划SQL参考

发布时间:2021-08-17 12:58 来源:ITPUB博客 阅读:0 作者: 栏目: 数据库

实验环境

搭建平台:VMware Workstation

OS:RHEL 6.10

Grid&DB:Oracle 11.2.0.4


SQL参考

select case

         when access_predicates is not null or filter_predicates is not null then

          '*' || id

         else

          ' ' || id

       end as "Id",

       lpad(' ', level) || operation || ' ' || options "Operation",

       object_name "Name",

       cardinality "Rows",

       b.size_mb "Mb",

       case

         when object_type like '%TABLE%' then

          REGEXP_COUNT(a.projection, ']') || '/' || c.column_cnt

       end as "Column",

       access_predicates "Access",

       filter_predicates "Filter",

       case

         when object_type like '%TABLE%' then

          projection

       end as "Projection"

  from plan_table a,

       (select owner, segment_name, sum(bytes / 1024 / 1024) size_mb

          from dba_segments

         group by owner, segment_name) b,

       (select owner, table_name, count(*) column_cnt

          from dba_tab_cols

         group by owner, table_name) c

 where a.object_owner = b.owner(+)

   and a.object_name = b.segment_name(+)

   and a.object_owner = c.owner(+)

   and a.object_name = c.table_name(+)

 start with id = 0

connect by prior id = parent_id; 



免责声明:本站发布的内容(图片、视频和文字)以原创、来自互联网转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:ts@56dr.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。