自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

DB2 V9.7 分區(qū)索引空間占用和掃描性能的描述

數(shù)據(jù)庫
以下的文章主要描述的是DB2 V9.7 分區(qū)索引空間占用和掃描性能,以下就是正文的介紹。愿在你學習DB2 V9.7 分區(qū)索引空間占用和掃描性能中以起到拋磚引玉的作用。

我們今天是要和大家一起討論的是DB2 V9.7 分區(qū)索引空間占用和掃描性能,我們大家都知道分區(qū)表主要是應(yīng)用在表比較大的背景下,所以我們使用大表才能測試出性能。下面我們創(chuàng)建測試表。

清單 7. 創(chuàng)建測試大表

  1. drop table t1;   
  2. CREATE TABLE t1   
  3. ( l_orderkey INTEGER NOT NULL, l_partkey   
  4. INTEGER, l_suppkey INTEGER, l_shipdate date, padding1 char(30)   
  5. )   
  6. PARTITION BY RANGE(l_shipdate)   
  7. (   
  8. STARTING '2008-01-01' ENDING '2008-12-31' EVERY 1 MONTH   
  9. )   
  10. ;   
  11. INSERT INTO t1 (l_orderkey, l_partkey, l_suppkey,l_shipdate,padding1)   
  12. WITH TEMP (COUNTER, l_orderkey, l_partkey, l_suppkey,l_shipdate,padding1) AS   
  13. ( VALUES (0, MOD(INT(RAND() * 12000000), 25), MOD(INT(RAND() * 12000000), 30),   
  14. MOD(INT(RAND() * 12000000), 30), DATE(MOD(INT(RAND() * 12000000), 366)+733042), 'A')   
  15. UNION ALL SELECT (COUNTER + 1), MOD(INT(RAND() * 12000000), 25),   
  16. MOD(INT(RAND() * 12000000), 30), MOD(INT(RAND() * 12000000), 30),   
  17. DATE(MOD(INT(RAND() * 12000000), 366)+733042), 'A' FROM TEMP   
  18. WHERE (COUNTER + 1) < 12000000   
  19. )   
  20. SELECT l_orderkey, l_partkey, l_suppkey,l_shipdate,padding1   
  21. FROM TEMP   
  22. ;   

 

我們創(chuàng)建的表包含 1200 萬行數(shù)據(jù),按照月份每個月一個分區(qū),分區(qū)列 l_shipdate 的數(shù)據(jù)分布在’ 2008-01-01 ’和’ 2008-12-31 ’之間,且均勻分布。注意 733042 是日期 2008-01-01 在 DB2 內(nèi)以天數(shù)的表達形式,是通過 days() 函數(shù)獲得的。

我們首先在列 l_orderkey 上創(chuàng)建非DB2 V9.7 分區(qū)索引。

清單 8. 創(chuàng)建非分區(qū)索引

  1. db2 "Create index idx_nopart_l_orderkey on t1(l_orderkey) not partitioned"   
  2. db2 "runstats on table db2inst1.t1 and indexes all"   
  3. db2 "select substr(INDNAME,1,25) idx_name,NLEVELS,NLEAF,INDCARD   
  4. from syscat.indexes where tabname='T1'"   
  5. DX_NAME NLEVELS NLEAF INDCARD   
  6. IDX_NOPART_L_ORDERKEY 3 16831 12000000   

 

清單 8 表明,非分區(qū)索引 B 樹高度為 3 層,具有 16831 個葉子頁面。

清單 9. 測試非DB2 V9.7 分區(qū)索引性能

  1. db2 set current explain mode yes   
  2. db2 values current timestamp   
  3. 1   
  4. 2009-07-07-15.46.24.863000   
  5. db2 "select count(*) from t1 "   
  6. 1   
  7. ----------- 12000000   
  8. db2 values current timestamp   
  9. 1   
  10. 2009-07-07-15.46.27.394000   
  11. db2exfmt -d sample -w -1 -n % -s % -# 0 -t   
  12. Total Cost: 24109.7   
  13. Query Degree: 1   
  14. Rows RETURN ( 1) Cost I/O   
  15. | 1 GRPBY ( 2) 24109.7 17002 | 1.2e+007 IXSCAN ( 3) 23259.5 17002 | 1.2e+007   
  16. INDEX: ADMINISTRATOR   
  17. IDX_NOPART_L_ORDERKEY Q1   

 

清單 9 表明使用索引 IDX_NOPART_L_ORDERKEY 統(tǒng)計表 T1 的總行數(shù)時,估計總成本為 24109.7,IO 次數(shù)估計為 17002,實際花費時間為 2.45 秒。

清單 10. 創(chuàng)建分區(qū)索引

  1. db2 "Create index idx_part_l_orderkey on t1(l_orderkey) partitioned"   
  2. db2 "runstats on table db2inst1.t1 and indexes all"   
  3. db2 "select substr(INDNAME,1,25) idx_name,DATAPARTITIONID,NLEVELS,NLEAF,INDCARD   
  4. from syscat.indexpartitions"   
  5. IDX_NAME DATAPARTITIONID NLEVELS NLEAF INDCARD   
  6. IDX_PART_L_ORDERKEY 0 3 1134 1021133   
  7. IDX_PART_L_ORDERKEY 1 3 1062 956131   
  8. IDX_PART_L_ORDERKEY 2 3 1136 1023293   
  9. IDX_PART_L_ORDERKEY 3 3 1098 988650   
  10. IDX_PART_L_ORDERKEY 4 3 1134 1021552   
  11. IDX_PART_L_ORDERKEY 5 3 1100 990715   
  12. IDX_PART_L_ORDERKEY 6 3 1134 1020850   
  13. IDX_PART_L_ORDERKEY 7 3 1137 1023727   
  14. IDX_PART_L_ORDERKEY 8 3 1101 991839   
  15. IDX_PART_L_ORDERKEY 9 3 1133 1020225   
  16. IDX_PART_L_ORDERKEY 10 3 1078 970906   
  17. IDX_PART_L_ORDERKEY 11 3 1078 970979   

 

清單 10 表明,分區(qū)索引 idx_part_l_orderkey 具有 12 個分區(qū),B 樹高度為 3 層,合計具有 13325 個葉子頁面,葉子頁面數(shù)比非分區(qū)索引下降 20% 。

清單 11. 測試DB2 V9.7 分區(qū)索引性能

  1. db2 set current explain mode yes   
  2. db2 values current timestamp   
  3. 1   
  4. 2009-07-07-15.59.09.722000   
  5. db2 "select count(*) from t1 "   
  6. 1   
  7. ----------- 12000000   
  8. db2 values current timestamp   
  9. 1   
  10. 2009-07-07-15.59.11.910000   
  11. db2exfmt -d sample -w -1 -n % -s % -# 0 -t   
  12. Total Cost: 24109.7   
  13. Query Degree: 1 Total Cost: 22059.4   
  14. Query Degree: 1   
  15. Rows RETURN ( 1) Cost I/O | 1 GRPBY ( 2)   
  16. 22059.4 14178.4 | 1.2e+007 IXSCAN ( 3) 21209.2 14178.4 | 1.2e+007   
  17. INDEX: ADMINISTRATOR   
  18. IDX_PART_L_ORDERKEY Q1   

 

清單 11 表明使用索引 IDX_PART_L_ORDERKEY 統(tǒng)計表 T1 的總行數(shù)時,估計總成本為 22059.4,比非分區(qū)索引下降 8.5%,IO 次數(shù)估計為 14178.4,比非分區(qū)索引下降 16%, 實際花費時間為 2.19 秒,比非分區(qū)索引下降 10% 。

上述測試表明,DB2 V9.7 分區(qū)索引在空間占用、掃描性能方面比非分區(qū)索引具有一定的性能優(yōu)勢。

【編輯推薦】

  1. 實現(xiàn)DB2備份數(shù)據(jù)庫的操作方案漫談
  2. DB2歸檔日志的管理方案從哪幾點入手?
  3. 對DB2取得當前時間的正確解析
  4. DB2性能調(diào)優(yōu)中存在哪些問題,如何破解?
  5. DB2 數(shù)據(jù)類型如何才能輕松接觸?


 

責任編輯:佚名 來源: 新浪科技
相關(guān)推薦

2010-08-19 09:30:31

DB2 V9.7

2010-08-16 16:08:34

DB2 V9.7

2010-08-16 13:53:26

2010-08-19 09:22:03

DB2 V9.7 分區(qū)

2010-08-10 10:23:16

IBM DB2 V9.

2010-08-19 08:49:41

DB2 V9.7 索引

2010-08-19 09:37:41

DB2 V9.7 語句

2010-08-16 11:34:11

IBM DB2 V9.

2010-08-11 11:39:06

IBM DB2 V9.

2010-08-10 17:24:15

2010-08-11 09:56:20

DB2 V9.7

2010-08-10 11:01:12

DB2 V9.7

2010-08-06 14:52:13

DB2 9.7武器

2010-10-25 10:08:30

ibmdwDB2

2010-07-29 11:20:03

DB2 9.7

2009-04-30 08:59:13

DB2 9.7InfoSphereIBM

2010-07-28 10:13:06

DB2查詢Table

2010-08-04 15:00:06

DB2未使用索引

2010-08-16 17:07:43

DB2 trc

2010-07-29 13:09:48

DB2 9.7 兼容
點贊
收藏

51CTO技術(shù)棧公眾號