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.

  • 相关阅读:
    CNN: MINST
    【人工智能导论:模型与算法】第六章 思维导图
    【人工智能导论:模型与算法】6.4 循环神经网络
    【人工智能导论:模型与算法】LDA | adaBoosting
    【人工智能导论:模型与算法】6.3 卷积神经网络 学习笔记 1 基础概念
    【人工智能导论:模型与算法】生成式模型 | 判别式模型 3 贝叶斯公式 忽略分母
    【人工智能导论:模型与算法】生成式模型 | 判别式模型 2 修改示例
    【人工智能导论:模型与算法】EM | MLE | Expectation
    k8s+Jenkins+GitLab自动化部署asp.net项目
    docker持续集成java项目
  • 原文地址:https://www.cnblogs.com/wangrongxin/p/5791634.html
Copyright © 2011-2022 走看看