zoukankan      html  css  js  c++  java
  • 053-212

    Note the following parameters settings in your database:
    SGA_MAX_SIZE = 1024M
    SGA_TARGET = 700M
    DB_8K_CACHE_SIZE = 124M
    LOG_BUFFER = 200M
    You issued the following command to increase the value of DB_8K_CACHE_SIZE:
    SQL> ALTER SYSTEM SET DB_8K_CACHE_SIZE=140M;
    What would happen?
    A. It will fail because DB_8K_CACHE_SIZE parameter cannot be changed dynamically
    B. It will be successful only if the memory is available from the auto tuned components
    C. It will fail because an increase in DB_8K_CACHE_SIZE cannot be accommodated within SGA_TARGET
    D. It will fail because an increase in the DB_8K_CACHE_SIZE cannot be accommodated within SGA_MAX_SIZE

    注意:这道题没有说明该数据库的标准块是 8K。 要修改需要使用 db_cache_size其实在大多数我们的数据库标准块的大小为 8K,所以就有了以下不能更新的问题:
    ALTER SYSTEM SET DB_8K_CACHE_SIZE=140M
    ERROR at line 1:
    ORA-32017: failure in updating SPFILE
    ORA-00380: cannot specify db_8k_cache_size since 8K is the standard block size
    但如果数据库的标准块不是 8K,则是可以更改的。只要满足总的组件不能超过 SGA_MAX_SIZE 就可以了。
    按照题意,应该选 D
    注:LOG_BUFFER 大小一般为粒度的近似值。

  • 相关阅读:
    两条线路,如何选
    Eczema
    Eczema
    healing psoriasis -151
    12/30/2019
    how sales area determined for returns vendor?
    [转]SAP LSMW 不能为勾选供应商采购组织视图'Returns Vendor’选项然后维护运达方做录屏...
    通过RFC获取其他SAP系统的数据
    goturkey
    Instant Client 配置
  • 原文地址:https://www.cnblogs.com/Babylon/p/7844048.html
Copyright © 2011-2022 走看看