How to fix the Oracle error SQL*Loader-00270: TERMINATED BY EOF valid only for CHAR or RAW datatypes?
In this post, you’ll learn more about the Oracle ErrorSQL*Loader-00270: TERMINATED BY EOF valid only for CHAR or RAW datatypes with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
SQL*Loader-00270: TERMINATED BY EOF valid only for CHAR or RAW datatypes
Reason for the Error SQL*Loader-00270: TERMINATED BY EOF valid only for CHAR or RAW datatypes
A field description in the SQL*Loader control file used the TERMINATED BY EOF option when the field was not a RAW or CHAR datatype.
How to fix the Error SQL*Loader-00270: TERMINATED BY EOF valid only for CHAR or RAW datatypes ?
You can fix this error in Oracle by following the below steps
Modify the SQL*Loader control file to either remove the TERMINATED BY EOF clause or change the datatype for the field to be CHAR or RAW.
Leave Your Comment