lijm1522 发表于 2016-11-15 07:24:30

DB2导入导出命令

不整理论的,直接上干货
除了使用控制中心的可视化操作之外,还可以使用命令行来进行导入导出。
导出:

export to c:\export\exporttest of del lobs to d:\lob\ lobfile lobs modified by lobsinfile select * from tablename

说明:其中c:\export\为导出路径,exporttest 为导出文件,是del格式,可以使用UE直接打开
select * from tablename为你需要导出的表,是一个SQL语句,你可以使用任意SQL语句
导入:

import from c:\import\importtest of del lobs from d:\lob\aainsert into tablename

说明:c:\import\importtest为导入文件,也是del格式,insert into tablename为SQL语句,同导出。
页: [1]
查看完整版本: DB2导入导出命令