Which format is used to load the data? VARTEXT or DATA?
In both cases DEFINE the input columns with matching datatypes (DEC(11,2) or VARCHAR(12)) and FastLoad should put those rows into the ET error table.
But if you want FastLoad to ignore that error and still load the row with a NULL instead you must switch to MultiLoad using NULLIF or load to a staging table and then use a CASE.
Which format is used to load the data? VARTEXT or DATA?
In both cases DEFINE the input columns with matching datatypes (DEC(11,2) or VARCHAR(12)) and FastLoad should put those rows into the ET error table.
But if you want FastLoad to ignore that error and still load the row with a NULL instead you must switch to MultiLoad using NULLIF or load to a staging table and then use a CASE.
Dieter