« Oracle 12.2 DBCA 使用 Silent 建库 | Blog首页 | Oracle 19c 新特性详解:DataGuard 中ADG的自动DML重定向 »
Oracle 比率:Redo Nowait Ratio 的计算方式
作者:eygle | 【转载请注出处】|【云和恩墨 领先的zData数据库一体机 | zCloud PaaS云管平台 | SQM SQL审核平台 | ZDBM 数据库备份一体机】
链接:https://www.eygle.com/archives/2019/01/oracle_redo_nowait.html
链接:https://www.eygle.com/archives/2019/01/oracle_redo_nowait.html
有朋友问道这个问题,在 AWR 中,Redo Nowait 比例的含义。在很多报告中,这个值出现了负数。
其实从 Statspack 的报告中,就可以找到计算公式:
-- -- Instance Efficiency Percentages column ldscr format a50 column nl format a60 newline; select 'Instance Efficiency Percentages (Target 100%)' ldscr ,'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' ldscr ,' Buffer Nowait %:' dscr , round(100*(1-:bfwt/:gets),2) pctval ,' Redo NoWait %:' , decode(:rent,0,to_number(null), round(100*(1-:rlsr/:rent),2)) pctval ,' Buffer Hit %:' dscr , round(100*(1-(:phyr-:phyrd-:phyrdl)/:gets),2) pctval ,' In-memory Sort %:' , decode((:srtm+:srtd),0,to_number(null), round(100*:srtm/(:srtd+:srtm),2)) pctval ,' Library Hit %:' dscr , round(100*:lhtr,2) pctval ,' Soft Parse %:' , round(100*(1-:hprs/:prse),2) pctval ,' Execute to Parse %:' dscr , round(100*(1-:prse/:exe),2) pctval ,' Latch Hit %:' , round(100*(1-:lhr),2) pctval ,'Parse CPU to Parse Elapsd %:' dscr , decode(:prsela, 0, to_number(null) , round(100*:prscpu/:prsela,2)) pctval ,' % Non-Parse CPU:' , decode(:tcpu, 0, to_number(null) , round(100*1-(:prscpu/:tcpu),2)) pctval from sys.dual;
这其中能够看到很多比率的计算方式,Nowait Redo 的计算如下:
decode(:rent,0,to_number(null), round(100*(1-:rlsr/:rent),2)) pctval
这其中:
rlsr = Redo Log space requests
rent = Redo Entries
有了这个计算公式,就可以理解其中的玄机了。如果 Redo Log Space 的请求非常多,这个计算就可能出现负数,或者 rent 溢出变小都是可能的情况。
历史上的今天...
>> 2011-01-17文章:
>> 2010-01-17文章:
>> 2008-01-17文章:
>> 2007-01-17文章:
>> 2006-01-17文章:
>> 2005-01-17文章:
By eygle on 2019-01-17 21:46 | Comments (0) | FAQ | 3330 |