Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
   sel cast(trim(Env) as char(6)) ,
    cast (trim(Databasename) as char(30)) from DB.Top_Space_Consumer;

I am running above query through fast export and getting data in below format.

%^@^@PKPTD DB1
%^@^@PKPTD DB2
%^@^@CLPTD DB3
%^@^@PKPTD DB4

i want data in below format.

PKPTD DB1
PKPTD DB2
CLPTD DB3
PKPTD DB4
share|improve this question
This is a valid question that may not have been asked with the enough clarity for the general audience. If you are still having trouble with this FastExport try reposting your question with more details and I can try to help you. – Rob Paller Mar 4 at 15:17

closed as not a real question by casperOne Mar 4 at 12:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I am guessing your export format is FASTLOAD or BINARY. FastExport appends two binary bytes of data to the beginning of each record.

To get around this in the past I have concatenated the fields together with the delimiter of choice and casted the datatypes to a character and then casted the record to a fixed length. This does mean there is trailing white space at the end but that can be easily accounted for when loading the data into the next environment. Then you can change your export format to TEXT and the binary data will not be appended to the beginning of your records.

share|improve this answer
#! /bin/ksh fexp << EOF .logtable edw1_man_work.WS_test_logtable; .logmech ldap; .logon PKDTD/abc,teradata; .begin export sessions 2; .export outfile /home/naveen/fast_export.txt; sel cast(trim(Env) as char(6)) , cast (trim(Databasename) as char(30)) from EDW1_MAN_WORK.Top_Space_Consumer; .end export; .logoff; EOF This is script from which i am getting data. – navku Mar 4 at 12:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.