数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

IBM DB2 的数据复制、迁移方法[1]


发布日期:2021年07月06日
 
IBM DB2 的数据复制、迁移方法[1]

以下方法经测试在环境IBM xGRAID DB VWin Adv ServerDMS表空间中数据的load速度在万条/min左右

背景需要更改数据库表空间或者需要将数据库中所有表的数据迁移到一个新的数据库中

步骤

通过db控制台(dbcc)选中源数据库中的所有表将其导出成DDL脚本;

根据需要对脚本进行必要的修改譬如更改表空间为GATHER;

新建数据库新建DMS表空间:GATHER;

将DDL脚本在此数据库中执行;

编写代码查询源数据库中的所有表自动生成export脚本;

编写代码查询源数据库中的所有表自动生成import脚本;

连接源数据库执行export脚本;

连接目标数据库执行import脚本;

附录:生成export脚本代码示例:/**

* 创建导出脚本

* @param conn

* @param creator表创建者

* @param filePath

*/

public void createExportFile(Connection connString creatorString filePath) throws Exception {

DBBase dbBase = new DBBase(conn);

String selectTableSql = select name from sysibmsystables where creator = + creator + and type=T;

try {

dbBaseexecuteQuery(selectTableSql);

} catch (Exception ex) {

throw ex;

} finally {

dbBaseclose();

}

DBResult result = dbBasegetSelectDBResult();

List list = new ArrayList();

while (resultnext()) {

String table = resultgetString();

listadd(table);

}

StringBuffer sb = new StringBuffer();

String enterFlag = \r\n;

for (int i = ; i < listsize();i++) {

String tableName = (String)listget(i);

sbappend(db \export to aa + StringvalueOf(i+)+ ixf of ixf select * from + tableName + \);

[] []

               

上一篇:IBM DB2 的数据复制、迁移方法[2]

下一篇:DB2 performance expert V2简介