标签:语句 情况 test nbsp 插入数据 ext lin null ons
具体操作如下:
第一步:先编辑好数据控制文件 xx.ctl,如test.ctl
options(skip=1) --跳过第一行(看实际情况)
load data infile ‘C:\Users\1\Desktop\test.txt‘ --数据文件的路径
truncate into table test1 --将表数据清空插入数据,此外还有insert、replace、append方式
fields terminated by ‘\t‘ --数据的分隔符,字段拆分
TRAILING NULLCOLS(a,b,c,d date‘yyyy/mm/dd‘) --数据为空则为空,括号里是字段(包括字段类型的转换)
第二步:在cmd命令行窗口执行以下语句
sqlldr adm/adm@orcl control=D:\test.ctl log=D:\test.log --加载数据文件的位置和生成日志文件的位置
标签:语句 情况 test nbsp 插入数据 ext lin null ons
原文地址:https://www.cnblogs.com/wangcb606/p/9778909.html