Archives of the TeradataForum
Message Posted: Tue, 20 Jul 2004 @ 11:39:39 GMT
Subj: | | Eliminating Column Titles during a FastExport |
|
From: | | Anomy Anom |
<-- Anonymously Posted: Tuesday, July 20, 2004 06:59 -->
We are trying to export a small table to an output file, which works fine, however, the job also writes Column Titles to the file, which we do
not want. Please can someone tell us how to prevent this. We cannot find reference to it in the manuals.
(I know we could just ignore the first row of the file, but can we get rid of them from the export?)
.EXPORT REPORT FILE=@OUTPUT_LST@
.Set SideTitles Off;
.Set Echoreq Off;
.Set Width 254;
.Set TitleDashes Off;
Select *
from @[email protected]_PASSWORDS
where User_group = 'MSTR'
and last_changed_date < current_date - 90;
.LABEL End;
.EXPORT RESET
.Exit 0;
|