|
|
Archives of the TeradataForum
Message Posted: Mon, 29 Oct 2007 @ 16:00:17 GMT
Subj: | | Re: Multiload error 3857 from BTEQ export file |
|
From: | | Geoffrey Rommel |
You didn't include the .field commands from your Mload script. Since the date was exported as DATA, I would expect it to be in an integer form
(4 bytes); in this case you would define it to Mload as ".field rundate date". In this case, inserting it directly (without a CAST) should
work.
But maybe it is a 10-byte character string. In this case, you would define it as ".field rundate char(10)" and try inserting ":rundate (date,
format 'YYYY/MM/DD')".
| |