摘要:
每天一条DB2命令-031#查看锁等待db2pd -db sample -locks showlocks wait 阅读全文
摘要:
每天一条DB2命令-030#查看执行计划db2 set current explain mode explaindb2 -tvf date.dbname.sqldb2exfmt -d bmsdb -1 -o date.dbname.sql.exfmtdb2 set current explain m 阅读全文
摘要:
每天一条DB2命令-029#查看交易(包括应用的commits和rollbacks)db2pd -transactions 阅读全文
摘要:
每天一条DB2命令-027#通过表锁判断查看某张表是否有活动事务db2 "select * from sysibmadm.snaplock where tabname='STAFF' and tabschema='DB2INST1'" 阅读全文
摘要:
每天一条DB2命令-026#准备把数据库改为列组织形式db2set DB2_WORKLOAD=ANALYTICS 阅读全文
摘要:
每天一条DB2命令-024#全库runstatsdb2 -x "select 'runstats on table ' ||trim(tabschema)||'.'|| trim(tabname)||' with distribution and detailed indexes all;'from 阅读全文
摘要:
每天一条DB2命令-023#对最近30分钟内更新的所有动态和静态SQL语句的查询db2 "call monreport.pkgcache (30)" 阅读全文
摘要:
每天一条DB2命令-022#数据库内存阈值配置(10.5默认是100)db2 update db cfg using db_mem_thresh 100 阅读全文
摘要:
Db210.5反馈产品列表 DB2 10.5 for Linux, UNIX, and Windowsdb_mem_thresh -“数据库内存阈值”配置参数此参数表示数据库管理器允许的已落实但当前未使用的数据库共享内存最大百分比,达到此百分比后,数据库管理器将开始释放已落实的内存页以将它们返回给操 阅读全文
摘要:
每天一条DB2命令-021#启动hadr备库db2 start hadr on database hadb as standby 阅读全文