共计 1938 个字符,预计需要花费 5 分钟才能阅读完成。
如何让 Oracle 的自动统计信息不收集直方图的信息
在 Oracle 9i 中,默认的统计信息收集是不收集直方图信息的,也就是说默认的 MOTHOD_OPT 模式为’FOR ALL COLUMNS SIZE 1
而在 10g 开始,dbms_stats 包中默认的 METHOD_OPT 做了调整,默认的 METHOD_OPT 值为”FOR ALL COLUMNS SIZE AUTO”:
SQL> select * from v$version;
BANNER
—————————————————————-
Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 – 64bi
PL/SQL Release 10.2.0.5.0 – Production
CORE 10.2.0.5.0 Production
TNS for Linux: Version 10.2.0.5.0 – Production
NLSRTL Version 10.2.0.5.0 – Production
SQL> select dbms_stats.get_param(‘method_opt’) from dual;
DBMS_STATS.GET_PARAM(‘METHOD_OPT’)
——————————————————————–
FOR ALL COLUMNS SIZE AUTO
这就说明,从 10g 开始,统计信息收集中的直方图部分,收集与否是有 oracle 自从判断
但是我们说,智能的往往也是愚笨的,并不是见得所有的自动化的操作都是没有问题的
oracle 往往会大量的收集一些并不是必须的直方图信息,而有些直方图信息又会对查询造成不必要的影响
本文我们简单的说明如何规避这种因为默认的统计信息收集造成对直方图的收集从而造成 SQL 的执行问题
由于我们简单的对直方图进行删除后,oracle 的自动统计信息又会重新收集,所以我们需要采取一些必要的方法,来规避这个问题
10g 中:
在 10g 中,我们并没有很好的方法去规避这种方法,oracle 也没有提供比较好的工具给我们使用,但是我们可以通过简单的曲线思维来解决这个问题:
1- 删除表的统计信息
2- 手工收集标的统计信息,不收集直方图
3-lock 表的统计信息
4- 创建 JOB 手工收集统计信息
11g 中:
在 11g 中,oracle 似乎也认识到了问题,对 dbms_stats 包添加了新功能,提供给我们进行修改:
dbms_stats.set_table_prefs
1- 删除直方图信息:
dbms_stats.delete_column_stats procedure and setting the col_stat_type parameter to HISTOGRAM.
BEGIN
dbms_stats.delete_column_stats(
ownname=>’SH’, tabname=>’SALES’, colname=>’PROD_ID’, col_stat_type=>’HISTOGRAM’);
END;
Use the new dbms_stats.set_table_pref procedure to set a specific value for the method_opt parameter for the table effected by this problem. The following value for the method_opt parameter tells Oracle to continue to collect histograms as usual on all of the columns in the SALES table except for the PROD_ID column, which should never have a histogram created on it.
BEGIN
dbms_stats.set_table_prefs(‘SH’, ‘SALES’,’METHOD_OPT’, ‘FOR ALL COLUMNS SIZE AUTO, FOR COLUMNS SIZE 1 PROD_ID’);
END;
/
3. The auto stats gathering job or your own statistics gathering commands will now use the table preference you set when it gathers statistics on this table and will no longer create a histogram on the ID column.
更多 Oracle 相关信息见 Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-08/134448.htm