Hi all,
Good morning.
I'm having one issue whit a specific ctl file, I can't understand why it's not splitting the columns so I'm having the entire row in the first column.
It seems that sql loader is not able to parse the micro sign as a delimiter.
Can you please help me?
SQL*Loader: Release 12.2.0.1.0
OPTIONS(SKIP=1, ERRORS=0, MULTITHREADING=TRUE, DIRECT=TRUE, SILENT=(ALL))
LOAD DATA
CHARACTERSET UTF8
INFILE '/orabatch/ftpcpl/in/OPPORTUNITIES.csv'
BADFILE '/orabatch/ftpcpl/in/OPPORTUNITIES.bad'
DISCARDFILE '/orabatch/ftpcpl/in/OPPORTUNITIES.dsc'
REPLACE
INTO TABLE OPPORTUNITIES
FIELDS TERMINATED BY "µ" OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS
(
HPTL CHAR,
NAME CHAR,
STAGENAME CHAR,
OPPORTUNITYOWNER CHAR,
CLOSEDATE CHAR,
STRATEGY CHAR,
RECORDTYPEID CHAR,
CAMPAIGNKEY CHAR,
EXCLUDECLOSEAUTO CHAR,
CENTRALIZEDCAMPAIGN CHAR,
LISTTYPE CHAR
)
Both files, ctl and csv, were encoded with UTF-8, LINUX format.
Thanks,