Archives of the TeradataForum
Message Posted: Wed, 20 Jun 2001 @ 21:43:50 GMT
Subj: | | Re: Dump Explain Truncated |
|
From: | | Fred Pluebell |
Are you using .EXPORT REPORT format in BTEQ?
How do you know it's being truncated? If the truncation error occurs when you try to run the exported script, you may have a different,
less obvious problem. Check the FORMAT for the DateTimeStamp column in the "Query" table; for example
HELP COLUMN QCD.QUERY.DateTimeStamp;
If the FORMAT is not 'yy/mm/dd' the scripts won't work. To fix just ALTER TABLE QCD.Query ADD DateTimeStamp DATE NOT NULL FORMAT
'yy/mm/dd';
|