db2的导入导出命令--export和import(IXF文件)

 1.连接数据库            

   db2 connect to 数据库名 user 登陆名 using 登陆密码 

2.导出数据表到文件

   db2 export to t1.ixf of ixf select * from 表名 

3.导入文件到数据表
   db2 import from t1.ixf of ixf insert into 目标表名或者新表名 
 

你可能感兴趣的:(db2)