zoukankan      html  css  js  c++  java
  • ORACLE PGA

    PGA :
         consist of
         1. private sql area ;
              The private SQL area of a cursor is divided into two areas :
              a.  Persistent area ;
              b.  Run-time area ;
         2. Session Memory ;
            For a shared server environment, the session memory is shared and not private

         3. SQL work areas ;
            WORKAREA_SIZE_POLICY = AUTO ;
            PGA_AGGREGATE_TARGET =189792256
            
            SORT_AREA_SIZE, HASH_AREA_SIZE,
            BITMAP_MERGE_AREA_SIZE, CREATE_BITMAP_AREA_SIZE

    Memory Area  Dedicated Server Shared Server
    Nature of Session Memory                      Private      Shared
    Location of Persistent Area                                PGA  SGA
    Location of Run-time Area (SELECT) PGA SGA
    Location of Run-time Area (DML/DDL) PGA PGA

  • 相关阅读:
    对double数据类型的数据保留两位小数,并且进行四舍五入
    div位置设置
    每天一算法 -- (排序算法总结)
    SQL行转列
    设计模式的六大原则
    每天一算法 -- (插入排序)
    每天一算法 -- (选择排序)
    通用扩展函数--类型转换
    wcf和webservice
    Cookie的介绍及使用
  • 原文地址:https://www.cnblogs.com/caibird2005/p/1377279.html
Copyright © 2011-2022 走看看