码迷,mamicode.com
首页 > 数据库 > 详细

DB2 导出表数据

时间:2020-03-19 13:36:18      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:导入   into   表数   set   res   asc   insert   test   数据文件   

db2 => connect to testdb user db2inst1 using thepasswd
以DEL格式导出:
db2 => export to /home/backup/mytbl.txt of del select * from mytbl
以IXF格式导出:
db2 => export to /home/backup/mytbl.ixf of ixf select * from mytbl

使用db2 import指令导入数据
import和export是一对存在对应关系的指令,有一点不同的是,import支持四种格式:ASC, DEL, WSF, IXF, 而export只支持三种(见上面相应部分的描述)。
以下示范将数据文件/home/movedata/mytbl.ixf导入到数据库testdb中。
$ db2
db2 => connect to testdb user db2inst1 using thepasswd
db2 => import from /home/movedata/mytbl.ixf of ixf insert into mytbl
db2 => commit work
db2 => connect reset
db2 => quit
若表中存在自增长的IDENTITY列,需要使用相应的参数才能导入,比如:
db2 => import from /home/movedata/mytbl2.ixf of ixf modified by identityignore insert into mytbl2

DB2 导出表数据

标签:导入   into   表数   set   res   asc   insert   test   数据文件   

原文地址:https://www.cnblogs.com/codefeng/p/12523419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!