zoukankan      html  css  js  c++  java
  • Oracle的自动统计信息不收集直方图的信息

    Oracle的自动统计信息不收集直方图的信息

    在oracle9i中,默认的统计信息收集是不收集直方图信息的,也就是说默认的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的智能判断并不是100%正确,
    oracle往往会大量的收集一些并不是必须的直方图信息,而有些直方图信息又会对查询造成不必要的影响

    由于我们简单的对直方图进行删除后,oracle的自动统计信息又会重新收集,所以我们需要采取一些必要的方法,来规避这个问题

    10g中:

    • 解决方案
    1. 删除表的统计信息
    2. 手工收集标的统计信息,不收集直方图
    3. lock表的统计信息
    4. 创建JOB手工收集统计信息

    11g中

    在11g中,oracle对dbms_stats包添加了新功能,提供给我们进行修改,可以使用dbms_stats.set_table_prefs

    • 删除直方图信息:

    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;
    /
    

    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.

  • 相关阅读:
    Activity(二)
    channelartlist标签的使用
    把数据保存到数据库附加表 `dede_addonarticle` 时出错,请把相关信息提交给DedeCms官方。Duplicate entry '2' for key 'PRIMARY'
    TP5.0验证器使用方法
    TP5.0登录验证码实现
    dede列表页限制标题长度
    dede搜索页做法
    表单正则验证简便方法
    解决织梦dedecms文档关键字(自动内链)php5.5以上失效的问题 urf-8版本的
    织梦dede解决“更新数据库archives表时出错"方法
  • 原文地址:https://www.cnblogs.com/wangrongxin/p/5791634.html
Copyright © 2011-2022 走看看