1. 查询 指定IP 的Agent 信息
db2pd -db dbname -agent | sed -n "1;14p; /ipaddress/p"
# 指定IP, 程序读写次数较多 readnum
db2pd -db dbname -agent | awk 'NR<15; /ipaddress/ && $11 >readnum'
# 指定IP, 11列 匹配 某模式patt
db2pd -db dbname -agent | awk 'NR<15; /ipaddress/ && $11 ~ patt'
2. 查询未使用的 index
db2 "select indschema, indname, tabname from syscat.indexs where lastused='01/01/0001'"
3. 查询某表TABLE1 的索引使用信息
db2 "select tbspaceid, tableid from syscat.tables where tabname='TABLE1'"
db2pd -db dbname -tcbstats tbspaceid=3 tableid=907 -file outputfile
查看scans 列, read列 比较读取效率, 以及判断失效index
阅读(915) | 评论(0) | 转发(0) |