??? 當(dāng)我們發(fā)現(xiàn)某個(gè)SQL語(yǔ)句執(zhí)行很慢時(shí),可以通過(guò)查看它的訪問(wèn)計(jì)劃來(lái)定位原因,如是否執(zhí)行了合適的索引、是否采用了正確的連接方法等。
但是我們發(fā)現(xiàn)很多用戶對(duì)訪問(wèn)計(jì)劃的生成和解釋工具的使用存在很多疑惑,本文通過(guò)一些實(shí)例來(lái)解釋具體的用法,希望對(duì)大家有所幫助。
步驟1. 創(chuàng)建explain表
??? 訪問(wèn)計(jì)劃的采集和評(píng)估是通過(guò)一些explain命令和工具實(shí)現(xiàn)的,在采集和評(píng)估之前需要先創(chuàng)建一些數(shù)據(jù)表來(lái)存放解釋數(shù)據(jù)。
在<db2_inst>/sqllib/misc下有個(gè)文件叫EXPLAIN.DDL
db2 connect to <db>
db2 -tvf <db2_inst>/sqllib/misc/EXPLAIN.DDL (unix和linux下注意大小寫)
在當(dāng)前數(shù)據(jù)庫(kù)中會(huì)生成9張解釋表,第2步采集的解釋數(shù)據(jù)會(huì)存放到這些表中。
步驟2. 采集explain數(shù)據(jù)和explain snapshot數(shù)據(jù)
explain數(shù)據(jù)包含關(guān)于一條 SQL 語(yǔ)句的訪問(wèn)計(jì)劃的詳細(xì)信息。此信息跨多個(gè)不同的解釋表存儲(chǔ)。
explain shapshot數(shù)據(jù)包含一條 SQL 語(yǔ)句的當(dāng)前內(nèi)部表示以及所有相關(guān)信息。此信息存儲(chǔ)在 EXPLAIN_STATEMENT 解釋表的 SNAPSHOT 列中。
explain和explain snapshot的解釋數(shù)據(jù)采集有如下幾種方法:
執(zhí)行 EXPLAIN SQL 語(yǔ)句 設(shè)置 CURRENT EXPLAIN MODE 特殊寄存器/CURRENT EXPLAIN SNAPSHOT 特殊寄存器??
在 PRECOMPILE 或 BIND 命令中使用 EXPLAIN 或 EXPLSNAP 綁定選項(xiàng) Explain SQL:
explain語(yǔ)句為單條動(dòng)態(tài)SQL語(yǔ)句收集解釋數(shù)據(jù),如
?explain plan for "select * from employee"
Current explain mode為多條動(dòng)態(tài)SQL語(yǔ)句收集解釋數(shù)據(jù):
?db2 set current explain mode explain (打開注冊(cè)變量為explain模式)
?db2 "select * from employee"
?db2 "select * from department"
?...
?db2 set current explain mode no (關(guān)閉解釋模式)
Prep(或延遲bind) ...explain為嵌入式(如SQLC等)SQL語(yǔ)句收集解釋數(shù)據(jù):
?db2 prep myapp.sqc explain yes explsnap yes
步驟3. 查看和評(píng)估解釋數(shù)據(jù)
DB2提供了如下幾個(gè)查看工具,其中db2exfmt最為強(qiáng)大,其余兩個(gè)可輔助。
db2expln db2exfmt Visual Explain
db2exfmt -d <db> -g tic -s % -n % -# 0 -w -1 -o explain1.txt
具體命令的使用請(qǐng)參看DB2 command reference或信息中心
DB2 db2top性能監(jiān)控命令用法-找出最頻繁、最耗時(shí)的SQL
?
db2top -d 數(shù)據(jù)庫(kù) -u 用戶名 -p 密碼
按D,進(jìn)入動(dòng)態(tài)sql監(jiān)控?
www.2cto.com
?
按z,倒序排序
輸入列的數(shù)據(jù),序號(hào)是從0開始
按L,輸入sql的序列號(hào),查看sql明細(xì)
?
db2中查找top sql
$ db2 get snapshot for dynamic sql on testdb
Dynamic SQL Snapshot Result
Database name = testdb
Database path = /home/db2inst1/db2inst1/NODE0000/SQL00001/
Number of executions = 0
Number of compilations = 0
Worst preparation time (ms) = 1
Best preparation time (ms) = 1
Internal rows deleted = Not Collected
Internal rows inserted = Not Collected
Rows read = Not Collected
Internal rows updated = Not Collected
Rows written = Not Collected
Statement sorts = Not Collected
Statement sort overflows = Not Collected
Total sort time = Not Collected
Buffer pool data logical reads = Not Collected
Buffer pool data physical reads = Not Collected
Buffer pool temporary data logical reads = Not Collected
Buffer pool temporary data physical reads = Not Collected
Buffer pool index logical reads = Not Collected
Buffer pool index physical reads = Not Collected
Buffer pool temporary index logical reads = Not Collected
Buffer pool temporary index physical reads = Not Collected
Total execution time (sec.ms) = Not Collected
Total user cpu time (sec.ms) = Not Collected
Total system cpu time (sec.ms) = Not Collected
Statement text = select * from tb1
執(zhí)行時(shí)間: Total execution time (sec.ms)/Number of executions
查找執(zhí)行時(shí)間非常長(zhǎng)的sql文。
db2找出執(zhí)行時(shí)間最長(zhǎng)的dynamic sql 2010-08-31 13:53:35
分類:
db2 get monitor switches
查看snapshot的各個(gè)開關(guān),將這些開關(guān)都打開,
db2 update monitor switches using BUFFERPOOL ON
db2 update monitor switches using LOCK ON
db2 update monitor switches using SORT ON
db2 update monitor switches using STATEMENT ON
db2 update monitor switches using TABLE ON
db2 update monitor switches using TIMESTAMP ON
db2 update monitor switches using UOW ON
執(zhí)行下面的命令抓取dynamic sql的信息
db2 get snapshot for dynamic sql on orsdb > dynamic.out
cat dynamic.out|grep 'Total execution time' > time.out
cat time.out|sort -n +5
最下面的即為消耗時(shí)間最多的dynamic sql, 但是還需要看該sql的執(zhí)行次數(shù),這樣可以計(jì)算出執(zhí)行一次這樣的sql語(yǔ)句需要
多長(zhǎng)時(shí)間,找到消耗時(shí)間最多的sql語(yǔ)句,看能否做一些優(yōu)化及調(diào)整,
用此方法同時(shí)能夠得到cost最大的語(yǔ)句
db2 get snapshot for all on sample > snap.out?
?
attach命令: 用于解決sql1428N錯(cuò)誤
1.本地?cái)?shù)據(jù)庫(kù)
db2 attach to <node name>
2.遠(yuǎn)端數(shù)據(jù)庫(kù)
db2 attach to <node name> user <username> using <password>
terminate命令:
db2 drop database dbname
在完成這一過(guò)程之前要確保所有用戶已經(jīng)斷開連接,包括你自己。
db2 terminate
db2 force applications all
通過(guò)下面的命令可以看看是不是都清除了連接。
db2 list applications
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元
