I am trying you load a flat file to an oracle table with 23 Columns (number and varchar2 datatypes) using SQL Loader. The number of rows to be loaded is about 70K. I was able to use SQL loader to load data into other table, suddenly I received this type of error;
-----------------------------------------------------------------
SQL*Loader-00350 Syntax error at line 10.
Token longer than max allowable length of 258 chars
-----------------------------------------------------------------

then it points the error on line of the control file.

I tried looking the error code in Oracle Messages and codes but it gives a different description of the error.

Ed