トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

reorgはデータベース内の不要な領域除去やデータの再配置、インデックスの再作成によりパフォーマンスの向上を行う。
#contentsx
***データベースの統計情報の更新および統計情報の確認 [#r849b955]
 db2 => reorgchk update statistics on table all
 db2 => reorgchk current statistics on table all
 Table statistics:
 
 F1: 100 * OVERFLOW / CARD < 5
 F2: 100 * (Effective Space Utilization of Data Pages) > 70
 F3: 100 * (Required Pages / Total Pages) > 80
 
 SCHEMA    NAME                  CARD    OV    NP    FP ACTBLK    TSIZE  F1  F2  F3 REORG
 ----------------------------------------------------------------------------------------
 Table: DBNAME.TABLENAME
 DBNAME  TABLENAME             2.7e+07     0 4e+05 4e+05      - 2.42e+08   0  13 100 -*-

----
#counter