zoukankan
html css js c++ java
关于10053 trace中的UNCOMPBKTS和ENDPTVALS
关于10053 trace中的Histogram部分的UNCOMPBKTS和ENDPTVALS
当Histogram直方图类型为frequency histograms( Histogram: Freq)时UncompBkts 等于表上的行数, 而EndPtVals 等于bucket总数,或者说NDV,因为frequency histograms中 NDV=number of buckets
当直方图类型为height balanced histograms (Histogram: HtBal) UncompBkts 等于bucket的数目(其实也等于10053 trace中#Bkts的数目),而EndPtVals 等于已经被压缩的Histogram的大小,其实是等于: select count(*) from dba_tab_histograms where table_name='MACLEANLIU' and column_name='MACLEANLIU'的实际总和。 通过这2个值对比,可以了解到popular值的多少以及数据的倾斜度, 是有多个大量重复的值(popular value)还是仅有一个巨大的重复值。
仍不明确少数概念的话,来看看下面这个图:
查看全文
相关阅读:
P3371 【模板】单源最短路径(弱化版)
村村通
P1551 亲戚题解
P4467 [SCOI2007]k短路
P2483 【模板】k短路([SDOI2010]魔法猪学院)
POJ——2449 Remmarguts' Date
P1337 [JSOI2004]平衡点 / 吊打XXX
P1118 [USACO06FEB]数字三角形`Backward Digit Su`…
P1621 集合
P1514 引水入城
原文地址:https://www.cnblogs.com/macleanoracle/p/2968386.html
最新文章
bzoj 4403: 序列统计
bzoj 3191: [JLOI2013]卡牌游戏
Codeforces Round #460 E. Congruence Equation
PKUWC 2018 滚粗记
bzoj 3924: [Zjoi2015]幻想乡战略游戏
bzoj 3672: [Noi2014]购票
bzoj 2956: 模积和
bzoj 1443: [JSOI2009]游戏Game
codeforces624A
codeforces620A
热门文章
codeforces580C
codeforces445A
codeforces369A
codeforces279B
codeforces146A
codeforces3A
洛谷P2698 [USACO12MAR]花盆Flowerpot
洛谷P2397 yyy loves Maths VI (mode)
P1090 合并果子 题解
链式前向星标程
Copyright © 2011-2022 走看看