I'm trying to load around 289150 records through SQL loader, out of which 1 record is failing to insert and I'm getting the below error. Pasting the record for which it is failing and the error which is recorded.
record for which it is failing:- 200511734,"동발"사향만응고(ALL-MuschusPlaster),
Error message:- no terminator found after TERMINATED and ENCLOSED field
CTL file details
options(PARALLEL = TRUE, DIRECT = TRUE, skip=1)
UNRECOVERABLE LOAD DATA
APPEND INTO TABLE TEST_1234
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
TRAILING NULLCOLS
(
Item_serial_number char(1000),
Item_name char(4000)
)
want to know if there any issue in how we are loading the data or is it a data issue