SQLLDR的使用方法

最近公司有一批新的数据要导入到数据库,是从excel导入到oracle中
1、先建立一个以后缀名为ctl结尾的名字例如
total.ctl
load data
append
into table 表名
fields terminated by ‘‘  optionally enclosed by '"'
(

column  trim(":column")
)

在CMD中运行

sqlldr userid=%s control=%s log=%s readsize=6553600 bindsize=6553600 rows=5000 silent=header,feedback direct = true

你可能感兴趣的:(oracle,Excel)