sqlldr上传oracle
Posted 大阿毛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlldr上传oracle相关的知识,希望对你有一定的参考价值。
options (rows=10000,direct=true,skip=0,errors=10000)
load data
infile ‘文件名‘
truncate into table 表名
fields terminated by ‘,‘
optionally enclosed by ‘"‘
trailing nullcols
(
字段
)
关于日期格式
date类型
"to_date(:列名,‘yyyy-mm-dd hh24:mi:ss‘)"
timestamp类型
timestamp "yyyy-mm-dd hh24:mi:ss"
以上是关于sqlldr上传oracle的主要内容,如果未能解决你的问题,请参考以下文章