Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1051516
  • 博文数量: 155
  • 博客积分: 5339
  • 博客等级: 大校
  • 技术积分: 1436
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-10 21:41
文章分类

全部博文(155)

文章存档

2016年(3)

2015年(7)

2014年(3)

2013年(1)

2012年(8)

2011年(5)

2010年(1)

2009年(5)

2008年(4)

2007年(26)

2006年(46)

2005年(46)

分类: DB2/Informix

2008-04-03 18:12:32

dbschema -d $1 $1.sql
dbaccess $1 <unload to unload.unl select 'unload to '||tabname||'.unl select * from '||tabname from systables where tabid>=100 and tabtype
='T';
unload to load.unl select 'load from '||tabname||'.unl insert into '||tabname from systables where tabid>=100 and tabtype='T'
;
!
sed 's/|/;/' unload.unl > unload.sql
sed 's/|/;/' load.unl > load.sql
rm -f unload.unl load.unl
 
不是我写的,是从同事那儿要来的,使用这个脚本与dbexport比较最大的好处在于不需要独占数据库。
阅读(2454) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~