- 论坛徽章:
- 0
|
请高手帮忙,关于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();
} |
|