DB2_收集表統計資料
目的:
測試DB2收集表統計資料,本指令碼摘錄自DB2安裝目錄admin_scripts/tbrunstats.db2。
版本:Windows DB2 Express-C V9.7
操作步驟:
使用"db2cmd db2 -t"進入互動模式,執行後續操作。
connect to sample;
-- create a schema
CREATE SCHEMA testschema;
-- create a table
CREATE TABLE testschema.employee_temp LIKE employee;
-- insert into the table employee_temp
INSERT INTO testschema.employee_temp (SELECT * FROM employee);
-- perform. Runstats on the table
-- update statistics for the table employee_temp
-- perform. runstats on table employee_temp for column empno
-- with the following options:
--
-- Distribution statistics for all partitions
-- Frequent values for table set to 30
-- Quantiles for table set to -1 (NUM_QUANTILES as in DB Cfg)
-- Allow others to have read-only while gathering statistics
RUNSTATS ON TABLE testschema.employee_temp
ON COLUMNS(empno LIKE STATISTICS)
WITH DISTRIBUTION ON KEY COLUMNS
DEFAULT
NUM_FREQVALUES 30
NUM_QUANTILES -1
ALLOW READ ACCESS;
-- make sure to rebind all packages that use this table.
-- drop the table employee_temp
DROP TABLE testschema.employee_temp;
-- drop the schema
DROP SCHEMA testschema RESTRICT;
-- disconnect from the database
CONNECT RESET;
TERMINATE;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/18922393/viewspace-702304/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 6 收集資料庫統計資訊資料庫
- [zt] 收集基於成本的優化統計資料 - 分割槽表優化
- 038 收集表單資料
- 收集資料庫統計資訊需要收集直方圖資訊.資料庫直方圖
- UNIX下收集作業系統統計資料作業系統
- 併發請求:統計資料收集模式模式
- 批量修改資料後應收集統計資訊
- 關於統計資料收集的總結
- oracle統計資訊 使用dbms_stats包收集統計資料Oracle
- DB2_資料庫角色DB2資料庫
- 重新收集oracle表的統計資訊Oracle
- 使用dbms_stats包收集統計資料(zt)
- 收集 Kubernetes 資源統計資料的新工具
- DB2_線上裝載資料DB2
- Oracle 11g手工收集表統計資訊Oracle
- oracle外部表建立以及收集統計資訊以及臨時表Oracle
- 簡單的資料表統計
- Oracle收集優化統計資料的最佳實踐方法Oracle優化
- 網站統計中的資料收集原理及實現網站
- 禁用11g的統計資料自動收集功能
- 碎片資料收集利器-結構化動態表單設計思路
- Mysql 5.7中資料量更改統計資料收集的邏輯MySql
- DB2_審計DB2
- 收集資料
- 收集優化統計資料(Optimizer Statistics)的最佳實踐方法優化
- 【Statistics】禁用11g的統計資料自動收集功能
- 【Statistics】禁用10g的統計資料自動收集功能
- DB2_使用大表空間DB2
- DB2_收縮表空間DB2
- sql統計各種奇葩的資料庫表資料SQL資料庫
- 大資料資料收集大資料
- Oracle收集統計資訊Oracle
- Oracle 統計資訊收集Oracle
- 收集oracle統計資訊Oracle
- ORACLE 收集統計資訊Oracle
- 收集最佳化統計資料(Optimizer Statistics)的最佳實踐方法
- Oracle10g 資料匯入及index建立 - 統計資訊收集OracleIndex
- [轉帖]達夢資料庫-統計資料表資料量及空間表大小資料庫