首页 > 代码库 > sqlldr trailing nullcols
sqlldr trailing nullcols
由于要导入到tmp_content表的一些列(列:要导入的源文件txt or csv文件)为空,也,按理讲我当时另存为(在windows处理)csv,以,分隔。就是这个列没有内容,也该显示, ,之类的。
后在控制文件修改如下:
-bash-3.1$ more import_tmp_content.ctl
load data
infile ‘/oracle/wu_li.txt‘
append into table tmp_content
fields terminated by ‘,‘
trailing nullcols ##如要导入源文件此列内容为空,在导入到数据库表中,此列内容就是null
(content_id recnum,
version,
teachstage,
grade,
subject,
xiu,
chapter,
part,
subpart
)
-bash-3.1$
再次导入
sqlldr userid=pd/system control=/oracle/import_tmp_content.ctl log=load_wuli.log errors=1000
sqlldr trailing nullcols
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。