pga使用的一些資料
參考
9i (and probably 10gR1, which I did not test):
_pga_max_size: default value is 200MB.
_smm_max_size : default value is the least of 5% of pga_aggregate_target and of 50% of _pga_max_size. A ceiling of 100MB also applies. The ceiling is hit when the pga_aggregate_target exceeds 2GB (5% of 2GB = 10MB) or
when
_pga_max_size is set to a higher value than the default AND pga_aggregate_target is lower than 2GB.
10gR2
pga_aggregate_target now drives in most cases _smm_max_size:
pga_aggregate_target <=500MB, _smm_max_size = 20%* pga_aggregate_target
pga_aggregate_target between 500MB and 1000MB, _smm_max_size = 100MB
pga_aggregate_target >1000MB, _smm_max_size = 10%* pga_aggregate_target
and _smm_max_size in turns now drives _pga_max_size: _pga_max_size = 2 * _smm_max_size
A pga_aggregate_target larger than 1000MB will now allow much higher default thresholds in 10gR2: pga_aggregate_target set to 5GB will allow an _smm_max_size of 500MB (was 100MB before) and _pga_max_size of 1000MB (was 200MB).
You can get the hidden parameter values by querying x$ksppcv and x$ksppi as follows:
select a.ksppinm name, b.ksppstvl value from sys.x$ksppi a,sys.x$ksppcv b where a.indx = b.indx and a.ksppinm=’_smm_max_size’;
select a.ksppinm name, b.ksppstvl value from sys.x$ksppi a,sys.x$ksppcv b where a.indx = b.indx and a.ksppinm=’_pga_max_size’;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/48010/viewspace-1030496/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何設定新資料庫的PGA值資料庫
- 修改資料庫的ORACLE的SGA和PGA的值資料庫Oracle
- pga_aggregate_target和_pga_max_size都不能絕對限制實際PGA的使用
- oracle資料庫記憶體分配(sga和pga)Oracle資料庫記憶體
- Oracle PGA記憶體的配置和使用Oracle記憶體
- streams(單向資料同步)的使用的一些體會
- pga_aggregate_target和_pga_max_size都不能絕對限制實際PGA的使用--ora04030
- oracle的一些資料收集Oracle
- oracle pga使用情況常用指令碼:Oracle指令碼
- Tello和ROS的一些資料ROS
- Julia語言的一些資料
- 資料庫的一些有關資料庫
- 資料庫的一些操作(Sql)資料庫SQL
- 一些db2的資料DB2
- 使用資料庫引數 PGA_AGGREGATE_LIMIT 限制程式大小 (文件 ID 1602891資料庫MIT
- Slice在使用過程中需要懂的一些資料結構資料結構
- 獲取指定pid的session的pga/uga使用情況Session
- 資料結構::一些經典的大資料題資料結構大資料
- Oracle資料庫work area size & pga_aggregate_target引數Oracle資料庫
- 一些可用於研究的GIS資料資源
- 使用Tinker來除錯Laravel應用程式的資料以及使用Tinker一些總結除錯Laravel
- 【PGA】通過10g新特性得到PGA的調整建議
- 關於使用ThreadLocal管理資料庫連線的一些疑問thread資料庫
- 一些常用的Oacle資料庫操作資料庫
- 資料核對的一些體會
- DW資料倉儲的一些概念
- Proguard整理一些資料
- oracle redo一些資料Oracle Redo
- Oracle PGA引數的管理Oracle
- 全面分析PGA
- 資料庫簡單的一些原理概念資料庫
- 資料結構的一些基本概念資料結構
- 關於資料庫中的一些name資料庫
- 我身邊的一些資料庫事故資料庫
- 一些匪夷所思的資料庫問題資料庫
- ssd相關的一些資料介紹
- 資料庫選型的一些看法(轉)資料庫
- SQL資料庫的一些攻擊(轉)SQL資料庫