報表資料庫4031
報表資料庫11.2.0.3
凌晨3點多 ORA-4031初步分析如下
SQL> show parameter shared_pool
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
shared_pool_reserved_size big integer 191260262
shared_pool_size big integer 3G
1 每個報錯都是32 bytes,共享池高度碎片化。
ORA-04031: unable to allocate 32 bytes of shared memory ...
目前的非繫結變數SQL
SQL> select max(sql_id), FORCE_MATCHING_SIGNATURE, count(*) from v$sqlarea having(count(*)) > 10 group by FORCE_MATCHING_SIGNATURE order by 3 desc;
MAX(SQL_ID) FORCE_MATCHING_SIGNATURE COUNT(*)
------------- ------------------------ --------------------
gzxc3g7k3sc5n 15893216616221909352 1045
gzytrw39gf9yu 16484046957026113714 857
gzyv70wrpwsqc 17569133176929366965 817
gzhp074q8kwgh 0 748
gzu2067rd7jyw 7756258419218828704 366
gyhk2suas59uf 10608916155249212908 298
gz7tgax3fh9a4 1624161300791768224 293
gx7snay2cxqy5 7564646865446163327 252
gz05yp57n9j07 3886515924180660832 247
gz8yyn49x2vuk 1362246611959407211 169
gspy97xymz63w 18040382774461829989 167
gvg739mddh5j0 11140912056169054663 165
gjqsukh52bzas 13508424748370422794 99
gy0qparbcjddd 14508944154931705580 84
gs4w7trh69nfq 17947976122481830813 63
gyu6usscfbqk2 111259297832933531 62
gkxv3a38va5t5 7498119390662785279 51
gkwa70v3cztxw 18023912117949046031 43
gmdaxxfj62p4c 7373602686629649627 31
g41nvxyd1dftg 6128566623526257588 26
fr3pfvpnzqdvc 4544829194680067718 24
gsrs32gzsabyy 2165266382939917162 23
fdnxkh6ynt0db 7590092505420371665 23
dfyc1va7ykcmu 11117109627900895533 18
g9qr4y92mhs3n 11810285729586130302 18
g34dhdqx94wgq 953775746539613178 18
gpp7nzgwk38m9 4045863570885546702 17
ctazm8sa18duk 10982123986297386714 12
2 關於reserve pool 使用情況
SQL> SELECT free_space, avg_free_size,used_space, avg_used_size, request_failures,
2 last_failure_size
3 FROM v$shared_pool_reserved;
FREE_SPACE AVG_FREE_SIZE USED_SPACE AVG_USED_SIZE REQUEST_FAILURES LAST_FAILURE_SIZE
---------- ------------- ---------- ------------- ---------------- -----------------
143987384 867393.88 67538344 406857.494 35316 4064
_shared_pool_reserved_min_alloc的值是4400 ,大於LAST_FAILURE_SIZE 4064。
SELECT nam.ksppinm NAME, val.ksppstvl VALUE
FROM x$ksppi nam, x$ksppsv val
WHERE nam.indx = val.indx AND nam.ksppinm = '_shared_pool_reserved_min_alloc'
ORDER BY 1;
NAME VALUE
---------------------------------------- ------------------------------
_shared_pool_reserved_min_alloc 4400
說明共享池找不到連續空間後申請 reserve pool時由於沒有達到 _shared_pool_reserved_min_alloc而失敗。
這方面可以透過加大共享池和保留池,降低 _shared_pool_reserved_min_alloc緩解。
3 top event出現了SGA: allocation forcing component growth
這是在自動記憶體管理中 SGA擴充套件的等待。metalink上有說明可能會造成 4031。 (How To Deal With "SGA: allocation forcing component growth" Wait Events (Doc ID 1270867.1))
目前例項設定了sga_target和sga_max_size僅為24G,
從sga resize操作也可以看出共享池在出問題附近進行了多次擴充套件, buffer cache在做相應的收縮。
SQL> select component, oper_type, initial_size, target_size, start_time, end_time from v$sga_resize_ops where start_time > trunc(sysdate) order by start_time;
COMPONENT OPER_TYPE INITIAL_SIZE TARGET_SIZE START_TIME END_TIME
---------------------------------------------------------------- ------------- -------------------- -------------------- ------------------- -------------------
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:40
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:40 2015-01-12 03:18:40
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:40 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:40 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:40 2015-01-12 03:18:40
800 rows selected.
awr裡的shared pool建議,增大共享池會有很大收益
其實共享池一直都不夠,引數指定的是 3221225472,經過 11826此調整,已經漲到 4429185024了。最大的時候是 6039797760
而且shared pool和buffer cache的最大需求都遠大於初始值,之和也超過了sga_max_size定義的24G,因此很容易在繁忙情況下互相拆借空間,造成諸如4031等各種記憶體錯誤和latch爭用。
SQL> select component, round(current_size/1024/1024/1024) curr, round(max_size/1024/1024/1024) "max", round(user_specified_size/1024/1024/1024) "init"
2 from v$sga_dynamic_components
3 where component in ('shared pool', 'DEFAULT buffer cache');
COMPONENT CURR max init
------------------------ ---------- ---------- ----------
shared pool 4 6 3
DEFAULT buffer cache 18 19 10
SQL> show parameter sga_
NAME_COL_PLUS_SHOW_PARAM TYPE VALUE_COL_PLUS_SHOW_PARAM
------------------------------ ----------- --------------------------------
sga_max_size big integer 24G
sga_target big integer 24G
建議先增加 SGA, shared pool和 reserve pool觀察。後期評估是否需要調整_shared_pool_reserved_min_alloc。
凌晨3點多 ORA-4031初步分析如下
SQL> show parameter shared_pool
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
shared_pool_reserved_size big integer 191260262
shared_pool_size big integer 3G
1 每個報錯都是32 bytes,共享池高度碎片化。
ORA-04031: unable to allocate 32 bytes of shared memory ...
目前的非繫結變數SQL
SQL> select max(sql_id), FORCE_MATCHING_SIGNATURE, count(*) from v$sqlarea having(count(*)) > 10 group by FORCE_MATCHING_SIGNATURE order by 3 desc;
MAX(SQL_ID) FORCE_MATCHING_SIGNATURE COUNT(*)
------------- ------------------------ --------------------
gzxc3g7k3sc5n 15893216616221909352 1045
gzytrw39gf9yu 16484046957026113714 857
gzyv70wrpwsqc 17569133176929366965 817
gzhp074q8kwgh 0 748
gzu2067rd7jyw 7756258419218828704 366
gyhk2suas59uf 10608916155249212908 298
gz7tgax3fh9a4 1624161300791768224 293
gx7snay2cxqy5 7564646865446163327 252
gz05yp57n9j07 3886515924180660832 247
gz8yyn49x2vuk 1362246611959407211 169
gspy97xymz63w 18040382774461829989 167
gvg739mddh5j0 11140912056169054663 165
gjqsukh52bzas 13508424748370422794 99
gy0qparbcjddd 14508944154931705580 84
gs4w7trh69nfq 17947976122481830813 63
gyu6usscfbqk2 111259297832933531 62
gkxv3a38va5t5 7498119390662785279 51
gkwa70v3cztxw 18023912117949046031 43
gmdaxxfj62p4c 7373602686629649627 31
g41nvxyd1dftg 6128566623526257588 26
fr3pfvpnzqdvc 4544829194680067718 24
gsrs32gzsabyy 2165266382939917162 23
fdnxkh6ynt0db 7590092505420371665 23
dfyc1va7ykcmu 11117109627900895533 18
g9qr4y92mhs3n 11810285729586130302 18
g34dhdqx94wgq 953775746539613178 18
gpp7nzgwk38m9 4045863570885546702 17
ctazm8sa18duk 10982123986297386714 12
2 關於reserve pool 使用情況
SQL> SELECT free_space, avg_free_size,used_space, avg_used_size, request_failures,
2 last_failure_size
3 FROM v$shared_pool_reserved;
FREE_SPACE AVG_FREE_SIZE USED_SPACE AVG_USED_SIZE REQUEST_FAILURES LAST_FAILURE_SIZE
---------- ------------- ---------- ------------- ---------------- -----------------
143987384 867393.88 67538344 406857.494 35316 4064
_shared_pool_reserved_min_alloc的值是4400 ,大於LAST_FAILURE_SIZE 4064。
SELECT nam.ksppinm NAME, val.ksppstvl VALUE
FROM x$ksppi nam, x$ksppsv val
WHERE nam.indx = val.indx AND nam.ksppinm = '_shared_pool_reserved_min_alloc'
ORDER BY 1;
NAME VALUE
---------------------------------------- ------------------------------
_shared_pool_reserved_min_alloc 4400
說明共享池找不到連續空間後申請 reserve pool時由於沒有達到 _shared_pool_reserved_min_alloc而失敗。
這方面可以透過加大共享池和保留池,降低 _shared_pool_reserved_min_alloc緩解。
3 top event出現了SGA: allocation forcing component growth
這是在自動記憶體管理中 SGA擴充套件的等待。metalink上有說明可能會造成 4031。 (How To Deal With "SGA: allocation forcing component growth" Wait Events (Doc ID 1270867.1))
目前例項設定了sga_target和sga_max_size僅為24G,
從sga resize操作也可以看出共享池在出問題附近進行了多次擴充套件, buffer cache在做相應的收縮。
SQL> select component, oper_type, initial_size, target_size, start_time, end_time from v$sga_resize_ops where start_time > trunc(sysdate) order by start_time;
COMPONENT OPER_TYPE INITIAL_SIZE TARGET_SIZE START_TIME END_TIME
---------------------------------------------------------------- ------------- -------------------- -------------------- ------------------- -------------------
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:28 2015-01-12 03:18:28
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:29 2015-01-12 03:18:29
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:30 2015-01-12 03:18:30
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:31 2015-01-12 03:18:31
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:32 2015-01-12 03:18:32
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:33 2015-01-12 03:18:33
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:34 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:34 2015-01-12 03:18:34
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:35 2015-01-12 03:18:35
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:36 2015-01-12 03:18:36
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:37 2015-01-12 03:18:37
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:38 2015-01-12 03:18:38
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:40
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:39 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:39 2015-01-12 03:18:39
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:40 2015-01-12 03:18:40
shared pool GROW 4362076160 4429185024 2015-01-12 03:18:40 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:40 2015-01-12 03:18:40
DEFAULT buffer cache SHRINK 19394461696 19327352832 2015-01-12 03:18:40 2015-01-12 03:18:40
800 rows selected.
awr裡的shared pool建議,增大共享池會有很大收益
其實共享池一直都不夠,引數指定的是 3221225472,經過 11826此調整,已經漲到 4429185024了。最大的時候是 6039797760
而且shared pool和buffer cache的最大需求都遠大於初始值,之和也超過了sga_max_size定義的24G,因此很容易在繁忙情況下互相拆借空間,造成諸如4031等各種記憶體錯誤和latch爭用。
SQL> select component, round(current_size/1024/1024/1024) curr, round(max_size/1024/1024/1024) "max", round(user_specified_size/1024/1024/1024) "init"
2 from v$sga_dynamic_components
3 where component in ('shared pool', 'DEFAULT buffer cache');
COMPONENT CURR max init
------------------------ ---------- ---------- ----------
shared pool 4 6 3
DEFAULT buffer cache 18 19 10
SQL> show parameter sga_
NAME_COL_PLUS_SHOW_PARAM TYPE VALUE_COL_PLUS_SHOW_PARAM
------------------------------ ----------- --------------------------------
sga_max_size big integer 24G
sga_target big integer 24G
建議先增加 SGA, shared pool和 reserve pool觀察。後期評估是否需要調整_shared_pool_reserved_min_alloc。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26239116/viewspace-1399802/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 怎樣報表資料庫資料庫
- 報表資料分庫儲存
- 報表從資料庫中採集相關資料生成報表,資料太少怎麼辦?資料庫
- 實現報表資料分庫儲存
- 建立資料庫表資料庫
- 資料庫分庫分表資料庫
- 水晶報表中文資料
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- 資料庫表--nested table資料庫
- 資料庫表--temporary table資料庫
- 資料庫表--object table資料庫Object
- 資料庫表--external table資料庫
- 更改資料庫表名資料庫
- 資料庫表設計資料庫
- 資料庫 建立 3表資料庫
- 皕傑報表軟體的設計器資料庫部署資料庫
- 報表資料外接計算
- 報表開發工具FineReport報表填報資料校驗
- ORACLE資料庫裡表匯入SQL Server資料庫Oracle資料庫SQLServer
- Laravel5的資料庫表建立問題 資料庫遷移操作報錯問題解決Laravel資料庫
- ABAP資料庫表的後設資料資料庫
- oracle資料庫兩表資料比較Oracle資料庫
- SqlServer資料庫資料恢復報告SQLServer資料庫資料恢復
- 資料庫怎麼分庫分表資料庫
- MySQL資料庫之分庫分表方案MySql資料庫
- 【資料庫資料恢復】如何恢復Oracle資料庫truncate表的資料資料庫資料恢復Oracle
- 11.2.0.3 ASM例項出現ORA-4031導致資料庫歸檔失敗ASM資料庫
- oracle外部表記錄alert日誌&&資料庫執行報告Oracle資料庫
- ORACLE資料庫刪除表中記錄報record is locked by another userOracle資料庫
- 資料庫表初始化資料庫
- 分庫分表插入資料
- Oracle資料庫表碎片整理Oracle資料庫
- SQL建立資料庫和表SQL資料庫
- Activiti資料庫表結構資料庫
- Mysql資料庫表連線MySql資料庫
- Activiti 23張資料庫表資料庫
- 資料庫表--heap organized table資料庫Zed
- 資料庫表--index organized table資料庫IndexZed