文章详情页
使用DB2look 重新创建优化器访问计划(3)(1)
在测试系统上重新创建优化器/查询计划问题的示例:示例 1:OS:Windows 2000DB2LEVEL:V8.2 Fixpack 8 ESE 单分区测试并复制相同的 OS 和 db2level。数据库:生产数据库:SAMPLE测试数据库:DUMMYDB使用下列命令创建 Sample 数据库:db2sampl使用下列命令创建 Dummy 数据库:db2 create db DUMMYDB注重:用与生产中相同的代码页、地区和排序序列创建 TEST 数据库。生产环境:----------------------------------------- Database SAMPLE and Database Managerconfiguration parameters---------------------------------------UPDATE DBM CFG USING cpuspeed 9.446886e-007;UPDATE DBM CFG USING intra_parallel NO;UPDATE DBM CFG USING federated NO;UPDATE DBM CFG USING fed_noauth NO;!db2fopt SAMPLE update opt_buffpage 250;!db2fopt SAMPLE update opt_sortheap 256;UPDATE DB CFG FOR SAMPLE USING locklist 50;UPDATE DB CFG FOR SAMPLE USING dft_degree 1;UPDATE DB CFG FOR SAMPLE USING maxlocks 22;UPDATE DB CFG FOR SAMPLE USING avg_appls 1;UPDATE DB CFG FOR SAMPLE USING stmtheap 2048;UPDATE DB CFG FOR SAMPLE USING dft_queryopt 5;----------------------------------- Environment Variables settings---------------------------------!db2set DB2_INLIST_TO_NLJN=yes;!db2set DB2_HASH_JOIN=yes;除了以上设置,还应在数据库配置中注重下列配置: 1234下一页 db2 get db cfg for sample > dbcfg_sample.outDatabase heap (4KB) (DBHEAP) = 600SQL statement heap (4KB) (STMTHEAP) = 2048Number of frequent values retained (NUM_FREQVALUES) = 10Number of quantiles retained (NUM_QUANTILES) = 20确保在修改数据库治理器配置(dbm cfg)之后停止并启动该实例。对于 sample 数据库,按下列方式对 ORG 和 SALES 表运行 runstats:db2 connect to sampledb2 runstats on table <schema>.org with distributionand indexes alldb2 runstats on table <schema>.sales with distributionand indexes alldb2 terminate现在,通过执行 EXPLAIN.DDL 文件生成 EXPLAIN 表,该文件在 sqllibmisc 目录下:db2 connect to sampledb2 -tvf <intall path>EXPLAIN.DDLdb2 terminate在名为 query.sql 的文件中保存下列命令:connect to sampleset current explain mode explainselect * from org a, staff b wherea.deptnumb=b.dept and b.dept=15set current explain mode noterminate现在,按下列方式执行该文件:db2 -tvf query.sql上面将仅仅以解释模式编译查询。您将在屏幕上看到:C:>db2 -tvf query.sqlconnect to sampleDatabase Connection InformationDatabase server = DB2/NT 8.2.1SQL authorization ID = SKAPOORLocal database alias = SAMPLEset current explain mode explainDB20000I The SQL command completedsuccessfully.select * from org a, staff b wherea.deptnumb=b.dept and b.dept=15SQL0217W The statement was not executedas only Explain information requestsare being processed. SQLSTATE=01604set current explain mode noDB20000I The SQL command completed successfully.C:>db2 terminateDB20000I The TERMINATE command completed successfully. 上一页1234下一页 使用 db2exfmt 生成访问计划,如下:db2exfmt -d SAMPLE -g TIC -w -1-n % -s % -# 0-o prod_sample_exfmt.txt检查 prod_sample_exfmt.txt 文件的内容。您将看到生成了下面的访问计划:Access Plan:-----------Total Cost: 25.8823Query Degree: 1RowsRETURN( 1)CostI/O|4HSJOIN( 2)25.88232/-----+-----4 1TBSCAN TBSCAN( 3) ( 4)12.9682 12.9131 1| |35 8TABLE: SKAPOOR TABLE: SKAPOORSTAFF ORG现在,这就是您要在生产 sample 数据库上继续的计划。您需要在测试环境中模拟该计划。从生产 sample 数据库中收集下列信息:db2look -d SAMPLE -l -o storage.outdb2look -d SAMPLE -f -fd -o config.outdb2look -d SAMPLE -e -a -m -t ORG SALES -o table.ddl测试环境:修改上面将数据库从 SAMPLE 连接到 DUMMYDB 时所收集的每个文件中的数据库名。例如,假如您查看了 3 个文件的内容,就会注重到:CONNECT TO SAMPLE;将它修改为:CONNECT TO DUMMYDB;在测试环境中接管这些文件。本例中,所有的表都是在默认的表空间 USERSPACE1 中创建的。因此,它们也应在测试系统上相同的 SMS 表空间中用 storage.out 中转储的相同配置(包括 PREFETCHSIZE、EXTENTSIZE 等)进行创建。在 config.out 文件中进行少量修改。将下列内容:UPDATE DB CFG FOR SAMPLE USING dft_queryopt 5; 上一页1234下一页 修改为UPDATE DB CFG FOR SAMPLE USING dft_queryopt 3;并保存 config.out 文件。现在,执行 storage.out、config.out 和 table.ddl,如下:db2 -tvf storage.out > storage_output.outdb2 -tvf config.out > config_output.outdb2 -tvf table.ddl > table.out检查输出文件以确保所有命令都成功运行了。并且按照生产环境设置中所显示的用于 SAMPLE DB 的设置来修改 DBHEAP、STMTHEAP、NUM_FREQVALUES、NUM_QUANTILES,使它们适用于 DUMMYDB。同时,检查注册表变量设置是否尽可能地相同。使用 db2stop 和 db2start 停止并启动该实例。重新为 DUMMYDB 数据库创建解释表:db2 connect to dummydb;<install path>sqllibmiscdb2 -tvf EXPLAIN.DDLdb2 terminate;现在,对 DUMMYDB 数据库运行查询,在前面对 SAMPLE 数据库运行查询时所生成的 query.sql 文件中将数据库名从 SAMPLE 修改为 DUMMYDB。C:>db2 -tvf query.sqlconnect to dummydbDatabase Connection InformationDatabase server = DB2/NT 8.2.1SQL authorization ID = SKAPOORLocal database alias = DUMMYDBset current explain mode explainDB20000I The SQL command completedsuccessfully.select * from org a, staff b wherea.deptnumb=b.dept and b.dept=15SQL0217W The statement was not executed as onlyExplain information requestsare being processed. SQLSTATE=01604set current explain mode noDB20000I The SQL command completed successfully.C:>db2 terminateDB20000I The TERMINATE command completedsuccessfully 上一页1234
排行榜