免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: njchf
打印 上一主题 下一主题

请高手帮忙,关于db2 windows版和unix版本速度差异的问题 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2004-08-13 09:18 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

还请各位大虾指教一二

论坛徽章:
0
12 [报告]
发表于 2004-08-16 14:43 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

还是感觉是db2之外的原因!
比较感兴趣,顶一下!

论坛徽章:
0
13 [报告]
发表于 2004-08-18 15:27 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

印象中,有一个参数,可以设置直接 出结果 还是执行完了再出结果

论坛徽章:
0
14 [报告]
发表于 2004-08-19 09:10 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

请参考如下命令:

db2 runstat:
-------------
Updates statistics about the physical characteristics of a table and the
associated indexes. These characteristics include number of records, number of
pages, and average record length. The optimizer uses these statistics when
determining access paths to the data.

db2 reorgchk:
-------------
Calculates statistics on the database to determine if tables or indexes, or
both,
need to be reorganized or cleaned up.

db2 reorg index/table:
----------------------
Reorganizes an index or a table.

去更新 unix 平台下数据库表的统计信息,进行REORG CHECK, 如果需要 REORG,则进行
REORG 操作,然后在做一遍 RUNSTAT,以取得最新的统计信息,便于生成正确的存取方案


我试一下,然后把结果告诉大家
非常感谢大家的帮助


http://www-900.ibm.com/developerWorks/cn/dmdd/library/techarticles/0302kuznetsov/0302kuznetsov.shtml
这篇文章本人觉得写的不错

论坛徽章:
0
15 [报告]
发表于 2004-08-19 09:15 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
16 [报告]
发表于 2004-08-20 12:12 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

由于我这边没有unix环境(在外地用户那边),我在windows平台做了一遍reorg和runstats ,再查看存储方案,有几个查询提高了一点,但是许多大的查询反而慢了一半,许多表干脆不用索引了(是不是unix觉得我的表都太有序了,就懒得用索引了 ),不懂中

reorg时我用了索引,就是表关联时用的那几个字段,顺序也完全一致

由于windows平台几个大的查询都能在1秒钟之内(最多的也就几秒)搞定,因此不好比较具体的执行时间,就用的存储方案里面的成本值

不过也没找到其他更好的办法,这两天让用户在小型机上试试看吧


AIX试验结果:我把小型机上的所有表都reorg+ runstats了一遍,现在小型机上的速度已经有了大幅提高,已经接近我的windows平台了(现在与我的赛扬3-700,256内存服务器持平),但速度还是差一点
不过我还是搞不懂,我的windows平台的数据是从aix上用脚本使用ixf格式导出恢复的,aix是7月份从windows平台上用db2move移植过去的,两边同样没有统计信息,为何速度在整理前相差如此之大,难道是db2move的问题


下面是我写的一个javascript脚本,因为reorg只能一次到一个表,很不爽,这个脚本默认使用主键索引重组表,很方便,不过只能在windows平台上运行,需要5.6版本的windows脚本宿主(一般win2000sp2以后都可以了),大家需要的话把下面的代码复制以后另存为一个文本文件,扩展名.js就可以运行了
注意:此脚本需要在db2命令窗口中执行,在客户端上执行时,需要手工修改脚本加上数据库连接的用户和密码(db2 connect、db2rbind两个地方)

下面的脚本我禁用了表情符号还是有问题,试试这个(我把js文件改成jpg后缀发上来的,下载成功后该回去就可以了,我没找到ftp,还请斑竹大人见谅)

DB2REORG.jpg

4.07 KB, 下载次数: 15

论坛徽章:
0
17 [报告]
发表于 2004-08-23 16:53 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

/***************************************************************************
* DB2 数据库数据及索引重组
注意:1.重组表时默认使用主键索引重组,若无主键则重组时不使用索引
      2.如果不采用主键重组,可在最后自行重组
      3.如果需要进行重组前和重组后的对比,请在本脚本执行前后分别执行
        db2 reorgchk current statistics on table all >; reorgchklogb
        db2 reorgchk current statistics on table all >; reorgchkloge
      4.本脚本生成两个日志文件output和db2rbind.out
      5.注意:本脚本执行前请务必备份数据库
****************************************************************************/

//判断参数
if (WScript.arguments.length != 1) UsageMsg();

//得到数据库名称
var dbname = WScript.arguments.item(0);
var shell = WScript.CreateObject("WScript.Shell");


//创建输出文件
var fso = WScript.CreateObject("Scripting.FileSystemObject");
var fsout = fso.CreateTextFile("Output", true);        //可以覆盖


//连接数据库
execmd("db2 connect to " + dbname);


//首先对所有的数据表进行检查有哪些表需要重组,结果仅供参考
//execmd("db2 reorgchk current statistics on table all");


//若为导出,导出系统表(不含视图),默认采用逗号作为列分隔符
execmd("db2 export to tables of DEL MODIFIED BY CHARDEL: "
     + "select tab.tabschema, tab.tabname, coalesce(ind.indschema, ''), coalesce(ind.indname, '') "
     + "from syscat.tables as tab "
     + "left join syscat.indexes as ind on ind.tabschema = tab.tabschema and ind.tabname = tab.tabname and ind.uniquerule = 'P' "
     + "where tab.type = 'T' "
     + "order by tab.tabschema, tab.tabname");


//开始读系统表文件
var fsotb = WScript.CreateObject("Scripting.FileSystemObject");
var tbfile;

try
{
        tbfile = fsotb.OpenTextFile("tables",1);        //只读访问
}
catch (E)
{
        fsout.Close();
        //WScript.echo(E);
        WScript.echo("打开文件 tables 失败,请确认已导出数据!");
        WScript.Quit();
}

var str, tbinfo, tbschema, tbname, indschema, indname;
var i = 0;

while (!tbfile.AtEndOfStream)
{
        str = tbfile.ReadLine();
       
        //拆分字符串
        tbinfo = str.split(":,:");

        //去除:和空格
        tbschema = tbinfo[0].replace(/:| /g, "");        //表模式
        tbname   = tbinfo[1].replace(/:| /g, "");        //表名
        indschema = tbinfo[2].replace(/:| /g, "");        //索引模式
        indname   = tbinfo[3].replace(/:| /g, "");        //索引名称
       
        //对此表进行检查,刷新统计信息
        execmd("db2 runstats on table " + tbschema + "." + tbname + " with distribution and detailed indexes all");
       
        //对表进行重组,同时判断是否需要依据主键重组
        execmd("db2 reorg table " + tbschema + "." + tbname + (indschema == "" ? "" : (" index " + indschema + "." + indname)) + " use tempspace1");
       
        //重组结束,再次刷新统计信息
        execmd("db2 runstats on table " + tbschema + "." + tbname + " with distribution and detailed indexes all");
       
        i++;
        WScript.echo(i.toString() + " Completed!");
        WScript.echo("");
}

//自动重组结束,如果有需要使用非主键索引重组的请在下方处理区处理
/****************************************************************/
//示例:db2 reorg table tabschema.tabname index indschema.indname
//        db2 runstats on table tabschema.tabname with distribution and detailed indexes all

/****************************************************************/


//最后对数据库中的PACKAGE进行重新联编
execmd("db2rbind " + dbname + " -l db2rbind.out");


//再次执行reorgchk,刷新统计信息,同时与重组前进行对比
//execmd("db2 reorgchk current statistics on table all");


//导出结束
execmd("db2 disconnect " + dbname);
tbfile.Close();
fsout.Close();

WScript.echo("共重组表 " + i.toString());


//执行命令等待其结束并输出到屏幕及输出文件
function execmd(strcmd)
{
        var finished;                //标志执行是否结束
        var output;                //输出信息
       
        fsout.Write(strcmd);        //写入输出文件
        WScript.echo(strcmd);        //写到标准输出
       
        finished = shell.exec(strcmd);
        while (finished.Status == 0)        //未执行结束
        {
                WScript.Sleep(100);        //等待100毫秒
        }
       
        //执行结束,写输出
        output = finished.Stdout.ReadAll();        //读取输出信息
        fsout.Write(output);                        //写入输出文件
        WScript.echo(output);                        //写到标准输出
}


function UsageMsg()
{
        WScript.echo("Usage: cscript db2reorg.js <db_name>;");
        WScript.Quit();
}

论坛徽章:
0
18 [报告]
发表于 2004-08-23 17:05 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

db2move使用的是load还是import?db2move后unix机器上数据有没有大的变动?还有后来ixf的导入到windows使用的是load还是import?从道理上load和import导致的速度差是很大的。

论坛徽章:
0
19 [报告]
发表于 2004-08-23 17:10 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

[quote]原帖由 "vlife"]db2move使用的是load还是import?db2move后unix机器上数据有没有大的变动?还有后来ixf的导入到windows使用的是load还是import?从道理上load和import导致的速度差是很大的。[/quote 发表:


我没用过db2move不清楚他是用的哪一个, 从小型机上导到windows上是用ixf格式export出来然后用import的

论坛徽章:
0
20 [报告]
发表于 2004-08-23 17:20 |只看该作者

请高手帮忙,关于db2 windows版和unix版本速度差异的问题

用db2batch可以查看sql执行的具体时间
搞不明白了,import就是insert,不做runstat应该无法使用最新的统计信息
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP