http://tech.it168.com/a2008/1226/261/000000261354.shtml
GATHER_TABLE_STATS
收集表、列和索引统计数据。
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
--> SQL > execute dbms_stats.gather_table_stats( -
> ownname => ' test ' , -
> tabname => ' PARTTAB ' , -
> partname => null , - -- > 收集所有分区状态
> estimate_percent => null , - -- > 计算模式
> block_sample => false, - -- > 默认值,计算模式下无意义
> method_opt => ' FOR ALL COLUMNS SIZE 1 ' , - -- > 表和列统计,不生成直方图
> degree => null , - -- > 基于PARTTAB表上的DOP设置的默认并行度
> granularity => ' default ' , - -- >收集全局和分区统计数据
> cascade => true , - -- > 产生所有统计数据
> stattab => null , - -- >统计数据将被存储在字典中
> statid => null , -
> statown => null );
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
--> SQL > execute dbms_stats.gather_table_stats( -
> ownname => ' test ' , -
> tabname => ' PARTTAB ' , -
> partname => null , - -- > 收集所有分区状态
> estimate_percent => null , - -- > 计算模式
> block_sample => false, - -- > 默认值,计算模式下无意义
> method_opt => ' FOR ALL COLUMNS SIZE 1 ' , - -- > 表和列统计,不生成直方图
> degree => null , - -- > 基于PARTTAB表上的DOP设置的默认并行度
> granularity => ' default ' , - -- >收集全局和分区统计数据
> cascade => true , - -- > 产生所有统计数据
> stattab => null , - -- >统计数据将被存储在字典中
> statid => null , -
> statown => null );
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/35489/viewspace-608031/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/35489/viewspace-608031/
本文介绍如何使用GATHER_TABLE_STATS过程来收集表、列和索引的统计数据,这对于优化数据库性能至关重要。文中详细展示了如何通过设置不同的参数来定制统计信息收集的过程。
4万+

被折叠的 条评论
为什么被折叠?



