查詢SGA和PGA大小

ywxj_001發表於2016-04-05
SQL> set linesize 300
SQL> set pagesize 900
顯示可以動態重設大小的SGA元件的當前、最大和最小的容量:
SQL> select component,current_size,min_size,max_size from v$sga_dynamic_components;


COMPONENT                                                        CURRENT_SIZE   MIN_SIZE   MAX_SIZE
---------------------------------------------------------------- ------------ ---------- ----------
shared pool                                                         192937984  176160768  192937984
large pool                                                            4194304          0    4194304
java pool                                                             4194304    4194304    4194304
streams pool                                                                0          0          0
DEFAULT buffer cache                                                427819008  427819008  444596224
KEEP buffer cache                                                           0          0          0
RECYCLE buffer cache                                                        0          0          0
DEFAULT 2K buffer cache                                                     0          0          0
DEFAULT 4K buffer cache                                                     0          0          0
DEFAULT 8K buffer cache                                                     0          0          0
DEFAULT 16K buffer cache                                                    0          0          0
DEFAULT 32K buffer cache                                                    0          0          0
Shared IO Pool                                                              0          0          0
ASM Buffer Cache                                                            0          0          0


14 rows selected.
確定已經為程式全域性區分配了多少記憶體:
SQL> select name,value from v$pgastat
  2  where name in('maximum PGA allocated','total PGA allocated');


NAME                                                                  VALUE
---------------------------------------------------------------- ----------
total PGA allocated                                                69936128
maximum PGA allocated                                             194021376

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

相關文章