Hi guy there is some people that can tell me if inside the control file is possible to specificate more then one separator
Ex FIELDS TERMINATED BY ';' and FIELDS TERMINATED BY ':'
According to the SQL*Loader documentation, this isn't possible. Oracle 8i has some new features when specifying delimiters, including multi-character delimiters. However, the ability to use more than one delimiter doesn't appear to be an option.
It's possible to specificate more separetor having row termineted in this way
load data
APPEND
into table SEB_PER
trailing nullcols
(EVENT_DATE DATE "YYYYMMDD" TERMINATED BY WHITESPACE,
TIME CHAR TERMINATED BY ';',
Tools CHAR TERMINATED BY ':')
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.