FastExport defaults to MODE INDICATOR to deal with NULLs, but FastLoad doesn't.
So either modify
the FExp (if there are no NULLs):
.EXPORT OUTFILE "fexp.data" FORMAT FASTLOAD MODE RECORD;
or the FastLoad (if there are NULLs):
BEGIN LOADING dbase.tablename ERRORFILES dbase.Error_1, dbase.Error_2 INDICATORS;
Dieter
↧