Oracle8i中SORT_AREA_SIZE和SORT_AREA_RETAINED_SIZE的理解

oracle_ace發表於2008-01-07

在Oracle中,一個process執行一個邏輯複雜的SQL時,可能這個SQL包含了眾多的SORT工作,Oracle也只最多最多分配一個SORT_AREA_SIZE大小的空間來進行SORT.但是Oracle可以為我們分配多個SORT_AREA_RETAINED_SIZE來臨時儲存SORT結束後的結果.

SORT_AREA_SIZE
-------------------------
SORT_AREA_SIZE specifies in bytes the maximum amount of memory Oracle will use for a sort. After the sort is complete, but before the rows are returned, Oracle releases all of the memory allocated for the sort, except the amount specified by the SORT_AREA_RETAINED_SIZE parameter. After the last row is returned, Oracle releases the remainder of the memory.

Increasing SORT_AREA_SIZE size improves the efficiency of large sorts. Multiple allocations never occur. Only one memory area of SORT_AREA_SIZE exists for each user process at any time.SORT_AREA_SIZE is also used for inserts and updates to bitmap indexes.

Setting this value appropriately results in a bitmap segment being updated only once for each DML operation, even if more than one row in that segment changes.

Larger values of SORT_AREA_SIZE permit more sorts to be performed in memory. If more space is required to complete the sort than will fit into the memory provided, then temporary segments on disk are used to hold the intermediate sort runs.

SORT_AREA_RETAINED_SIZE
-----------------------------------------

SORT_AREA_RETAINED_SIZE specifies (in bytes) the maximum amount of the user global area (UGA) memory retained after a sort run completes.
The retained size controls the size of the read buffer, which Oracle uses to maintain a portion of the sort in memory.
This memory is released back to the UGA, not to the operating system, after the last row is fetched from the sort space.

Oracle may allocate multiple sort spaces of this size for each query.
Usually, only one or two sorts occur at one time, even for complex queries.
In some cases, however, additional concurrent sorts are required, and each sort keeps its own memory area.

the SORT_AREA_RETAINED_SIZE is the amount of memory retained when a sort completes and results are being returned.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12361284/viewspace-114504/,如需轉載,請註明出處,否則將追究法律責任。

相關文章