|
|
Archives of the TeradataForum
Message Posted: Wed, 05 Feb 2003 @ 13:53:38 GMT
Subj: | | Re: Concatenation in Fast Export script |
|
From: | | Geoffrey Rommel |
| I am trying to do a fast export from tera data and I would like to put a "," between fields, what is the syntax to accomplish
this? | |
It sounds as if you want FastExport to produce a text file containing variable-length fields with commas between them. It will not
do this without special coaxing, either thus:
select column1 || ',' || column2 || ',' || ...
or by writing an OUTMOD to manipulate the record before writing it to the output file.
Apparently Teradata Warehouse Builder will allow you to do something along these lines -- by defining separate producer and consumer
modules, I believe.
| |