欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

DB2导入导出命令

程序员文章站 2022-07-03 08:37:51
...
不整理论的,直接上干货DB2导入导出命令
            
    
    博客分类: 数据库 DB2SQLCC++C# 
除了使用控制中心的可视化操作之外,还可以使用命令行来进行导入导出。
导出:
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\aa  insert into tablename

说明:c:\import\importtest为导入文件,也是del格式,insert into tablename为SQL语句,同导出。