Search found 42189 matches

by chulett
Mon Jul 29, 2013 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup_103,1: Field "ID" has keyprep export format
Replies: 11
Views: 6484

Do an exact search here for "has keyprep export format error" and check the other two posts that come up besides yours and the one previously linked to. See if anything there helps. If it doesn't then it is time to involve your official support provider if you haven't already.
by chulett
Mon Jul 29, 2013 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data from Log File
Replies: 11
Views: 4123

By 'reverse the mapping to a masked value' Ray was asking if you had a need to be able to undo or 'unmask' the masked value back to its original value. Hopefully not as masking is a one-way process. Not seeing the problem with SSN, as noted earlier all it seeems you need to do from the examples you ...
by chulett
Mon Jul 29, 2013 6:49 am
Forum: General
Topic: Unlock the jobs
Replies: 5
Views: 1838

I would suggest you search here for DS.TOOLS which is another mechanism find PIDs and handle all aspects of lock management in your version. You can run this from the Administrator client.
by chulett
Mon Jul 29, 2013 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not fetching data from XML Input stage
Replies: 6
Views: 1937

As noted by Ernie, the difference is in your files. So, what is different between them?
by chulett
Mon Jul 29, 2013 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input buffer overrun at field
Replies: 19
Views: 11910

Those are all about your metadata in the CFF stage not matching the file you are processing. 1. Your metadata shows a record length of 199 but the record ended at 196. 2. The field mentioned was larger than you metadata allowed. 3. You are processing multiple record types and 'PDD' is not a type you...
by chulett
Fri Jul 26, 2013 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading csv file having blank data for date column
Replies: 9
Views: 3012

Just a quick reply - '0000-00-00 00:00:00' is not a valid timestamp because '0000-00-00' is not a valid date.
by chulett
Fri Jul 26, 2013 9:44 am
Forum: General
Topic: Purging all log files - how ?
Replies: 2
Views: 1082

Those instructions are for purging logs from the XMETA repository. For the hashed files I'd look into a looping script, probably simplest to find all of the RT_LOG names you've noted and issue a CLEAR.FILE on each one.
by chulett
Thu Jul 25, 2013 4:10 pm
Forum: General
Topic: How to escape double quotes in a transformer?
Replies: 1
Views: 2341

You don't need to escape them, use single quotes around the string with the doubles inside:

Code: Select all

'<doc xmls="google.com" >':DSLink1.col:"</doc>"
(and vice-versa works as well)
by chulett
Thu Jul 25, 2013 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: yyyy-mm-dd TO MMYYYY DATASTAGE
Replies: 3
Views: 1196

Dates have no formats, only strings do. Use DateToString() with a format mask that matches your desired output.
by chulett
Thu Jul 25, 2013 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: yyyy-mm-dd TO MMYYYY DATASTAGE
Replies: 3
Views: 1196

Are both fields strings?
by chulett
Thu Jul 25, 2013 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I use DataStage to backup records?
Replies: 6
Views: 2021

So... one thing clarified, you want to delete records in spite of putting 'data loading' in the subject. Everything else is still vague though, as noted.
by chulett
Thu Jul 25, 2013 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML Files using seq file stage
Replies: 26
Views: 9564

Five and a half years later and several things discussed... you have WHAT issue, exactly?
by chulett
Wed Jul 24, 2013 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage internal/implicit conversion of string to number
Replies: 7
Views: 9174

There is no global solution. DataStage server jobs inherently do not have data types. Context determines how comparisons are done (numeric or string, right- or left-justified). If both operands are numeric, a numeric comparison is performed. Interesting... I don't recall running afoul of that littl...
by chulett
Wed Jul 24, 2013 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Use of ICONV/OCONV Functions in the Parallel Jobs.
Replies: 7
Views: 7698

You need to learn the Parallel date handling functions, of which there are many. Primarily look into StringToDate() and DateToString() but a quick check of "Appendix B. Parallel Transform functions" in the Parallel Job Developer's Guide should be high on your list as well.