将SQL Loader实用程序与以下控制文件格式一起使用。
options(skip=1,rows=65534,errors=65534,readsize=16777216,bindsize=16777216)
load data
infile 'c:\users\shena\desktop\1.txt'
badfile 'C:\Users\shena\Desktop\test.bad'
discardfile 'C:\Users\shena\Desktop\test.dsc'
log 'C:\Users\shena\Desktop\test.log'
append
into table ma_basic_bd
fields terminated by '|' optionally enclosed by '"' trailing nullcols
(fs_perm_sec_id,
"DATE" "to_date(:DATE,'YYYY-MM-DD')",
adjdate "to_date(:adjdate,'YYYY-MM-DD')",
currency,
p_price,
p_price_open,
p_price_high,
p_price_low,
p_volume)
我们要求您使用传统的路径加载,以便我们可以在中获取被拒绝(由于数据类型不匹配和违反业务规则而被拒绝)的记录。坏文件。常规路径加载是默认选项。
下面的URL可以用于详细的知识。
https://youtu.be/eovTBGAc2RI
总共有4个视频。非常有帮助。