Hit Ratio For ORACLE
1.Share Pool Free
select pool,name,bytes/1024/1024 m from v$sgastat where name='free memory' and pool='shared pool';
2.Share Pool Hit Ratio
SELECT(1- ROUND(BYTES /(4096*1024*1024),2))*100|| '%'
FROM V$SGASTAT
WHERE NAME= 'free memory'
AND POOL = 'shared pool';
3.Buffer Cache Hit Ratio
select 1 - ((physical.value - direct.value - lobs.value) / logical.value)
"Buffer Cache Hit Ratio"
from v$sysstat physical,v$sysstat direct,v$sysstat lobs,v$sysstat logical
where physical.name = 'physical reads'
and direct.name='physical reads direct'
and lobs.name='physical reads direct (lob)'
and logical.name='session logical reads';
4.Library Cache Hit Ratio
SELECT (ROUND(SUM(pinhits)/sum(pins),2))*100|| '%' FROM V$LIBRARYCACHE;
5.PGA Hit Ratio
SELECT * FROM V$PGASTAT WHERE NAME='cache hit percentage';
pga設定建議值:
SELECT round(PGA_TARGET_FOR_ESTIMATE/1024/1024) target_mb,
ESTD_PGA_CACHE_HIT_PERCENTAGE cache_hit_perc,
ESTD_OVERALLOC_COUNT
FROM V$PGA_TARGET_ADVICE;
參考網址:
http://www.cnblogs.com/jimeper/archive/2008/07/09/1238763.html
http://blog.csdn.net/luoyanqing119/archive/2008/10/30/3183099.aspx
[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/789833/viewspace-1036287/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [Oracle Script] Buffer Cache Hit RatioOracle
- [Oracle Script] Library Cche Hit RatioOracle
- Buffer Cache Hit Ratio
- why Buffer Cache Hit Ratio < 0
- Keeping the Library Cache Reload Ratio at 0 and the Hit Ratio Above 95 Percent
- Cursor Cache Hit Ratio超過100%
- Keeping the Data Dictionary Cache Hit Ratio at or above 95 Percent
- oracle分析函式之ratio_to_reportOracle函式
- Oracle ArchitectureOracle
- Oracle Reporting 1 - Ratio_to_Report FunctionOracleFunction
- Oracle TOP SQL&&HITOracleSQL
- Oracle - Hit/Miss RatiosOracleiOS
- tahiti.oracle.comOracle
- Apress Expert Oracle GoldenGate - ArchitectureOracleGo
- using escape character whitin oracleOracle
- Oracle Doc list involved with architectOracle
- Oracle client/server architecture's benefits (275)OracleclientServer
- CBO,ORACLE,隱含引數,_sort_elimination_cost_ratio的含義Oracle
- Oracle Maximum Availability Architecture(MAA)官方文件OracleAI
- 上海站Oracle EBS Architecture 講課結束..Oracle
- MetricMeasurement calculates Peak Signal-to-Noise RatioREM
- Oracle 19c Concepts(14):Memory ArchitectureOracle
- Oracle 19c Concepts(15):Process ArchitectureOracle
- Oracle 19c Concepts(16):Application and Oracle Net Services ArchitectureOracleAPP
- puschitz
- Tahiti
- Architecture
- SAP Portfolio Analyzer 中 夏普比率(Sharpe Ratio)計算
- -webkit-min-device-pixel-ratio: 2是什麼意思?WebKitdev
- HDFS Architecture
- Process Architecture
- website architectureWeb
- The Architecture of NginxNginx
- [譯] Architecture Components 之 Guide to App ArchitectureGUIIDEAPP
- oracle 12c Release 2 版本廢棄 Non-CDB ArchitectureOracle
- Hacking Hit Tests
- Architecture–ViewModelView
- Architecture -- ViewModelView