Oracle Error Message
SQL*Loader-00283: file processing string “string” ignored for INFILE *
Reason for the Error
The SQL*Loader control file specified INFILE * for a load data file along with an optional file processing string. This message is a warning that the file processing string will be ignored since SQLLDR will expect the data to have the same record format as the SQL*Loader control file.
Solution
If the data in the SQL*Loader control file is in the same format as the rest of the SQL*Loader control file, then you don’t need to do anything. Removing the file processing string will get rid of this error message. If the data in the SQL*Loader control file has a different record format, then you need to copy the data into a separate file and use that file’s name in the INFILE clause.