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)还是仅有一个巨大的重复值。
仍不明确少数概念的话,来看看下面这个图:
查看全文
相关阅读:
1.1 Recruitment 1.1.4 Sample Test(II)
1.1 Recruitment 1.1.4 Sample Test(I)
微信登录接口
谷歌浏览器保留页面跳转前的请求
积分墙项目接口文档
@SneakyThrows
security中使用单元测试
Prometheus监控系统
大数据-shell-脚本入门-开头格式、运行方式、多命令处理
大数据-shell-概述
原文地址:https://www.cnblogs.com/macleanoracle/p/2968386.html
最新文章
第8关 k8s架构师课程之持久化存储第一节
第7关 k8s架构师课程之configmap、sercret的配置管理
CF1083A The Fair Nut and the Best Path(树形dp)
【模板】哈夫曼树 && 洛谷 P2168 [NOI2015] 荷马史诗
洛谷 P2184 贪婪大陆(树状数组)
洛谷 P3462 [POI2007]ODW-Weights(贪心)
洛谷 P3370 【模板】字符串哈希
CF118C Fancy Number(贪心,模拟)
CF1084C The Fair Nut and String(dp)
洛谷 P3531 [POI2012]LIT-Letters(逆序对)
热门文章
CF1092F Tree with Maximum Cost(换根dp)
洛谷 P3178 [HAOI2015]树上操作(树剖+线段树)
Lucas定理学习笔记 & 洛谷 P3807 【模板】卢卡斯定理/Lucas 定理
1.2 Interview 1.2.4 Sample Test(II)
1.2 Interview 1.2.4 Sample Test(I)
1.2 Interview 1.2.3 Background Reading(II)
1.2 Interview 1.2.3 Background Reading(I)
1.2 Interview 1.2.1 Preparation
1.1 Recruitment 1.1.4 Sample Test(IV)
1.1 Recruitment 1.1.4 Sample Test(III)
Copyright © 2011-2022 走看看