To which type of data conversions are you referring?
The FastLoad script is just loading data.
Teradata expects the Date/Time/Timestamp data to be in a very specific format.
If the incoming data does not match the format as described in the table creation, then the row will be placed in the error table.
You defined the column as: CLR_DT DATE FORMAT 'YY/MM/DD' NOT NULL
You also indicated the incoming data was in "delimited" (VARTEXT) format. Thus, the data in the data file must be in the format of YY/MM/DD.
To which type of data conversions are you referring?
The FastLoad script is just loading data.
Teradata expects the Date/Time/Timestamp data to be in a very specific format.
If the incoming data does not match the format as described in the table creation, then the row will be placed in the error table.
You defined the column as: CLR_DT DATE FORMAT 'YY/MM/DD' NOT NULL
You also indicated the incoming data was in "delimited" (VARTEXT) format. Thus, the data in the data file must be in the format of YY/MM/DD.