科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道DB2的数据复制、迁移方法

DB2的数据复制、迁移方法

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文介绍IBM DB2的数据复制、迁移方法,在环境IBM x346,3.2G×2,4G,RAID 1,DB2 V8.2.4,Win2000 Adv Server,DMS表空间中,数据的load速度在60-100万条/min左右的条件下测试完毕。

作者:谢道多 来源:IT专家网 2008年6月4日

关键字: IBM 数据库 DB2

  • 评论
  • 分享微博
  • 分享邮件

附录2:生成import脚本代码示例:

/** 

* 创建装载脚本

* @param conn

* @param creator 表创建者

* @param filePath

*/

public void createLoadFile(Connection conn,

String creator,String filePath) throws Exception {

DBBase dbBase = new DBBase(conn);

String selectTableSql =

"select name from sysibm.systables where creator = '"

+ creator + "' and type='T'";

try {

dbBase.executeQuery(selectTableSql);

} catch (Exception ex) {

throw ex;

} finally {

dbBase.close();

}

DBResult result = dbBase.getSelectDBResult();

List list = new ArrayList();

while (result.next()) {

String table = result.getString(1);

list.add(table);

}

StringBuffer sb = new StringBuffer();

String enterFlag = "\r\n";

for (int i = 0; i < list.size();i++) {

String tableName = (String)list.get(i);

sb.append("db2 \"load from aa" + String.valueOf(i+1)+

".ixf of ixf into " + tableName + " COPY NO without prompting \"");

sb.append(enterFlag);

}

String str = sb.toString();

FileUtility.saveStringToFile(filePath, str, false);

}

附录3:export脚本示例

db2 connect to testdb user test password test 

db2 "export to aa1.ixf of ixf select * from table1"

db2 "export to aa2.ixf of ixf select * from table2"

db2 connect reset

附录4:import脚本示例

db2 connect to testdb user test password test 

db2 "load from aa1.ixf of ixf replace into table1 COPY NO without prompting "

db2 "load from aa2.ixf of ixf replace into table2 COPY NO without prompting "

db2 connect reset


    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章