每批导入1000行的sh脚本:
table1.sh
split -10000 table1.20100806
ls x*>aa
while read LINE
do
echo $LINE
isql cmbc<<+
load from $LINE insert into gdxra;
+
done<aa
rm x*
ps:
删除命令:delete from table1[where...]
导入命令: load from table1.txt insert into table1
导出命令: unload to table1.txt
select * from table [where...]
欢迎访问:乐园www.ly8.co