zoukankan      html  css  js  c++  java
  • 12C以后PGA_AGGREGATE_LIMIT

    oracle自12C以后提供PGA_AGGREGATE_LIMIT参数来硬件限制pga

    PropertyDescription

    Parameter type

    Big integer

    Syntax

    PGA_AGGREGATE_TARGET = integer [K | M | G]

    Default value

    10 MB or 20% of the size of the SGA, whichever is greater

    For a PDB, the default value is the same as the CDB's default value.

    Modifiable

    ALTER SYSTEM

    Modifiable in a PDB

    Yes

    Range of values

    Minimum: 10 MB

    Maximum: 4096 GB - 1

    Basic

    Yes

    To set a hard limit for aggregate PGA memory, use the PGA_AGGREGATE_LIMIT parameter.

    Setting PGA_AGGREGATE_TARGET to a nonzero value has the effect of automatically setting the WORKAREA_SIZE_POLICY parameter to AUTO. With this setting, SQL working areas used by memory-intensive SQL operators (such as sort, group-by, hash-join, bitmap merge, and bitmap create) will be automatically sized. A nonzero value for this parameter is the default since, unless you specify otherwise, Oracle sets it to 20% of the SGA or 10 MB, whichever is greater.

    Setting PGA_AGGREGATE_TARGET to 0 automatically sets the WORKAREA_SIZE_POLICY parameter to MANUAL. With this setting, SQL working areas are sized using the *_AREA_SIZE parameters.

    PGA_AGGREGATE_LIMIT 参数有20% of the SGA  、pga的2倍、process进程数×3M(单机3M,rac 5M)的最大值来决定。

  • 相关阅读:
    编码上的小改进
    自定义HttpFilter模块完善
    Log4Net日志分类和自动维护
    也来写写基于单表的Orm(使用Dapper)
    要知道的DbProviderFactory
    仿Orm 自动生成分页SQL
    【问题帖】压缩图片大小至指定Kb以下
    [leetcode]Find Minimum in Rotated Sorted Array
    [leetcode]Maximum Product Subarray
    join
  • 原文地址:https://www.cnblogs.com/omsql/p/14481763.html
Copyright © 2011-2022 走看看