zoukankan      html  css  js  c++  java
  • OCP-1Z0-052-V8.02-41题

    41. You have recently collected statistics on certain objects of a schema in your database. But you

    observe suboptimal execution plans for the queries on these objects after two days of statistics collection.

    The optimizer statistics retention period is set to its default value. 

    Which action would help to use the previous set of statistics on the objects?

    A.Restore statistics from statistics history.

    B.Reduce the optimizer statistics retention period by 2 days.

    C.Set the OPTIMIZER_PENDING_STATISTICS parameter to TRUE.

    D.Reduce the Automatic Workload Repository (AWR) retention period by 2 days.

    Answer: A  
    答案解析:
    A,正确,可以从统计信息的历史信息恢复统计信息。如下面这个储存过程。

    RESTORE_TABLE_STATS Procedure

    This procedure restores statistics of a table as of a specified timestamp (as_of_timestamp). The procedure will restore statistics of associated indexes and columns as well. If the table statistics were locked at the specified timestamp the procedure will lock the statistics. The procedure will not restore user defined statistics.

    Syntax

    DBMS_STATS.RESTORE_TABLE_STATS (
       ownname                   VARCHAR2,
       tabname                   VARCHAR2,
       as_of_timestamp           TIMESTAMP WITH TIME ZONE,
       restore_cluster_index     BOOLEAN DEFAULT FALSE,
       force                     BOOLEAN DEFAULT FALSE,
       no_invalidate             BOOLEAN DEFAULT to_no_invalidate_type
                                                        (GET_PARAM('NO_INVALIDATE')));


  • 相关阅读:
    linux_java_同时启动三个项目脚本
    Python 项目-飞机大战_02.飞机大战-2
    Python 项目-飞机大战_01.飞机大战-1
    Mysql为什么要使用视图?
    Python语法基础_10.加强练习
    Python语法基础_09.面向对象3、异常、模块
    crontab--设置周期性被执行的指令
    面试者应向公司问什么问题?
    简单的触发黑名单阻断演示 control+c
    SetConsoleCtrlHandler演示
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316539.html
Copyright © 2011-2022 走看看