简单的Informix数据库导入、导出
#!/usr/bin/ksh
# -----------------------------------------------------------------
echo “导出”
cd /backup/informix(备份数据的目录)
dbaccess db01(数据库名) << !!
unload to test01.txt select * from admin.test01;
unload to test02.txt select * from admin.test02;
…… …… …… ……
!!
echo “导入"
cd /backup/test(要导进文件所在目录)
dbaccess db01(数据库名) <load from *.txt insert into 用户名.表名;
…… …… …… ……
!!
阅读(2240) | 评论(0) | 转发(0) |