zoukankan      html  css  js  c++  java
  • [bbk1190]第2集 Chapter 01Oracle Architectural

    查看SGA参数信息

    SQL> show sga;
    
    Total System Global Area 3256942592 bytes
    Fixed Size                  2217752 bytes
    Variable Size            1795164392 bytes
    Database Buffers         1442840576 bytes
    Redo Buffers               16719872 bytes
    SQL> show parameter SGA_MAX
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    sga_max_size                         big integer 3120M

    查看granule size

    SQL> select component,granule_size from v$sga_dynamic_components;
    
    COMPONENT                                                        GRANULE_SIZE
    ---------------------------------------------------------------- ------------
    shared pool                                                          16777216
    large pool                                                           16777216
    java pool                                                            16777216
    streams pool                                                         16777216
    DEFAULT buffer cache                                                 16777216
    KEEP buffer cache                                                    16777216
    RECYCLE buffer cache                                                 16777216
    DEFAULT 2K buffer cache                                              16777216
    DEFAULT 4K buffer cache                                              16777216
    DEFAULT 8K buffer cache                                              16777216
    DEFAULT 16K buffer cache                                             16777216
    
    COMPONENT                                                        GRANULE_SIZE
    ---------------------------------------------------------------- ------------
    DEFAULT 32K buffer cache                                             16777216
    Shared IO Pool                                                       16777216
    ASM Buffer Cache                                                     16777216
    
    14 rows selected.

    查看memory_target

    SQL> show parameter memory_target;
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    memory_target                        big integer 3120M
  • 相关阅读:
    HDU1171(01背包均分问题)
    HDU2159(完全背包)
    HDU1203(01背包变形)
    DAG上的DP
    ADB命令小结
    HDU3065(AC自动机入门题)
    HDU2896(AC自动机入门题)
    性能测试监控分析(13)-sysstat安装升级
    tomcat(9)-linux apache tomcat集群环境搭建
    nginx(4)-负载均衡的5种策略及原理
  • 原文地址:https://www.cnblogs.com/arcer/p/3050969.html
Copyright © 2011-2022 走看看