zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V13.02-209题

    209.You executed the following commands:

    SQL> ALTER SESSION SET OPTIMIZER_USE_PENDING_STATISTICS = false; 

     SQL> EXECUTE DBMS_STATS.SET_TABLE_PREFS('SH', 'CUSTOMERS', 'PUBLISH','false');

     SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS('SH', 'CUSTOMERS');

    Which statement is correct regarding the above statistics collection on the SH.CUSTOMERS table in the

    above session?

    A. The statistics are stored in the pending statistics table in the data dictionary.

    B. The statistics are treated as the current statistics by the optimizer for all sessions.

    C. The statistics are treated as the current statistics by the optimizer for the current sessions only.

    D. The statistics are temporary and used by the optimizer for all sessions until this session terminates.

    Answer: A

    答案解析:

    参考:http://docs.oracle.com/cd/E11882_01/server.112/e41573/stats.htm#PFGRF94725

    By default, the optimizer uses the published statistics stored in the data dictionary views. If you want the optimizer to use the newly collected pending statistics, then set the initialization parameter OPTIMIZER_USE_PENDING_STATISTICS to TRUE (the default value is FALSE), and run a workload against the table or schema:

    ALTER SESSION SET OPTIMIZER_USE_PENDING_STATISTICS = TRUE;



  • 相关阅读:
    决策树
    结巴分词demo
    线性回归分析波士顿房价
    将python的字典格式数据写入excei表中
    ubuntu16.04电脑重启/关机卡死问题记录
    Hadoop 平台搭建
    Linux 常用命令
    灰度共生矩阵
    图像类型
    linux中的一些常用命令
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315949.html
Copyright © 2011-2022 走看看