I've consulted the LOAD reference and still having issues loading the date data. Here's the script portion:
LOAD FROM "C:\Documents and Settings\amrobi2\Desktop\A180206P.txt" OF ASC MODIFIED BY CODEPAGE=1252 DATEFORMAT="MM.DD.YYYY" NULLINDCHAR=Y METHOD L (1 6, 7 16, 17 26, 27 32) NULL INDICATORS (0, 0, 0, 0) MESSAGES "gggg" REPLACE INTO AMROBI2.CROSSREFERENCE (ELECDATE, ELECSEQ, PAPERSEQ, PAPERDATE) COPY NO INDEXING MODE AUTOSELECT;
CONNECT RESET;
The input format is MMDDYY. If I try to modify the script to say DATEFORMAT="mmddyy", the LOAD throws an error saying the date format is incorrect.
Anyone have an idea...