Archives of the TeradataForum
Message Posted: Mon, 24 Feb 2003 @ 19:55:59 GMT
Subj: | | Re: Fastload Error Table question |
|
From: | | Balchunas, John |
I usually run a select statement as follows.
SELECT substring (dataparcel from 1 for 30)
FROM ErrorTable1
Where errorfieldname = '.............'
;
Or, if you don't know the column, you can do
SELECT ErrorCode
, ErrorFieldName
, Dataparcel (bytes (n))
FROM ErrorTable1
;
Our output is in HEX.
Hope this helps
John Balchunas
DataBase Administrator
Jefferson County Public Schools
|