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

  • 相关阅读:
    webpack 构建同时适用于手机和电脑的调试服务器
    自定义事件 js
    浏览器下载本地数据
    .net 获取当前周及根据年和周获取起始结束时间
    实现SQL Server中的切割字符串SplitString函数,返回Table
    WebApi 服务监控
    log4net 记录MVC监控日志
    一致性Hash算法在Redis分布式中的使用
    Redis主从复制配置
    windows平台下redis安装及配置文件介绍
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13317003.html
Copyright © 2011-2022 走看看