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

    116. Your database instance is started using the server parameter file (SPFILE). You executed a

    command to change the value of the LOG_BUFFER initialization parameter:

    ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH;

    What would be the outcome of this command?

    A.The command succeeds only if Automatic Memory Management is not enabled.

    B.The command succeeds, but you need to restart the database for changes to take effect.

    C.The command returns an error because the size of the redo log buffer cannot be changed dynamically.

    D.The parameter value is changed and it comes into effect as soon as space becomes available in the

    System Global Area (SGA).

    Answer: C

    答案解析:

    sys@TEST0910> show parameter log_b
    NAME TYPE VALUE
    ------------------------------------ ----------- ------------------------------
    log_buffer integer 19365888
    sys@TEST0910> ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH;
    ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH
    *
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modified
    sys@TEST0910> select NAME,ISSES_MODIFIABLE, ISSYS_MODIFIABLE from v$parameter where name like '%log_b%';
    NAME ISSES ISSYS_MOD
    -------------------- ----- ---------
    log_buffer FALSE FALSE
    sys@TEST0910> select distinct ISSYS_MODIFIABLE from v$parameter;
    ISSYS_MOD
    ---------
    IMMEDIATE 动态参数,直接在系统中修改到内存的参数 alter system set parameter=value;
    FALSE 静态参数,表示下次启动才生效,不能直接改到内存 alter system set parameter=value scope=spfile;
    LOG_BUFFER为静态参数,故scope不能用both,只能用spfile。
    DEFERRED 会话参数,alter session 参数=值,马上生效,下次启动过后无效
    sys@TEST0910> ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=spfile;
    ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=spfile
    *
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modified
    sys@TEST0910> ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=spfile sid='*';
    ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=spfile sid='*'
    *
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modified

  • 相关阅读:
    RuntimeError: An attempt has been made to start a new process before the current
    Expected object of backend CPU but got backend CUDA for argument #2 'weight'
    RuntimeError: multi-target not supported at
    模型load文件时报AttributeError: Can't get attribute 'Cours' on <module '__main__' from 错误
    ArrayList扩容源码分析
    HashMap源码分析(put/get)
    索引优化策略有哪些
    Mysql什么是回表查询和覆盖索引
    MyISAM与InnoDB区别
    使用ReentrantLock实现阻塞队列与交替打印
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317003.html
Copyright © 2011-2022 走看看