码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 分区表 收集统计信息 参数granularity

时间:2018-10-09 21:35:21      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:ati   not   收集统计信息   pos   asc   osi   include   included   name   

GRANULARITY

Determines the granularity of statistics to collect. This value is only relevant for partitioned tables.

参数可选项:

GRANULARITY - The value determines granularity of statistics to collect (only pertinent if the table is partitioned).

‘ALL‘ - gathers all (subpartition, partition, and global) statistics

‘AUTO‘- determines the granularity based on the partitioning type. This is the default value.

‘DEFAULT‘ - gathers global and partition-level statistics. This option is obsolete, and while currently supported, it is included in the documentation for legacy reasons only. You should use the ‘GLOBAL AND PARTITION‘ for this functionality. Note that the default value is now ‘AUTO‘.

‘GLOBAL‘ - gathers global statistics

GLOBAL AND PARTITION‘ - gathers the global and partition level statistics. No subpartition level statistics are gathered even if it is a composite partitioned object.

‘PARTITION ‘- gathers partition-level statistics

‘SUBPARTITION‘ - gathers subpartition-level statistics.


exec DBMS_STATS.GATHER_TABLE_STATS(ownname=>‘H5YYT‘,tabname=>‘TL_EC_H5_SERVICE_LOG‘,partname=>‘TL_EC_H5_SERVICE_LOG_201809‘,granularity=>‘ALL‘,estimate_percent=>10,no_invalidate=>false,cascade=>true,degree =>10);

Oracle 分区表 收集统计信息 参数granularity

标签:ati   not   收集统计信息   pos   asc   osi   include   included   name   

原文地址:https://www.cnblogs.com/kawashibara/p/9762724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!