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) |