Search found 6797 matches

by DSguru2B
Mon Jan 22, 2007 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date to Timestamp conversion in Transformer.................
Replies: 6
Views: 2027

Yea, thats what i thought. If its server, then use my suggestion, if its px, use ArndW's suggestion.
by DSguru2B
Mon Jan 22, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date to Timestamp conversion in Transformer.................
Replies: 6
Views: 2027

Use ICONV to change them into internal format. For date coming in from oracle, use substring to extract the first 10 characters (Date Part) and apply ICONV to it. Then do your comparison.
by DSguru2B
Mon Jan 22, 2007 9:40 am
Forum: General
Topic: CR/LF for the new generation
Replies: 45
Views: 19163

Wow. It would have certainly been a kick for their users and some memory to share with us new kids on the block.
by DSguru2B
Mon Jan 22, 2007 9:22 am
Forum: General
Topic: CR/LF for the new generation
Replies: 45
Views: 19163

I never got a chance to witness those machines :(
Heard about them from my univ. professors.
by DSguru2B
Mon Jan 22, 2007 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

I think you need to filter your results then pass it through the aggregator. If you are aggregating before doing the filtering, it will give you one record for each group.
by DSguru2B
Mon Jan 22, 2007 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

Ok. Now i see. That's pretty straight forward. So basically instead of UNLOCK, i will have myUNLOCK which will perform the UNLOCK command and also take some audit details. Hmm, thanks ArndW.
by DSguru2B
Mon Jan 22, 2007 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mutlple columns into single column
Replies: 3
Views: 900

As Ray advised, add the month names using transformer and then use the pivot stage. Read about its use in the manual guide.
by DSguru2B
Mon Jan 22, 2007 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with uing check point run
Replies: 11
Views: 2699

If you want to re-run a job on a checkpointed mechanism, even though it was successful the last time, check the box that says "Do not checkpoint run" inside the job activity.
by DSguru2B
Mon Jan 22, 2007 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

Hmm, interesting. So that means if an audit routine can look upon the UNLOCK command. It can look upon other commands too, right? Just for educational purposes, how would you do that. :roll:
by DSguru2B
Mon Jan 22, 2007 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to load jobs log into table?
Replies: 4
Views: 1124

dsjob command has many options for logs. -logdetail, -logsum etc. Use that to get the log into a text file. You can then parse that text file to bring it into a delilmited file with all the information you need.
by DSguru2B
Mon Jan 22, 2007 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input buffer overrun at field
Replies: 7
Views: 5125

This error usually occurs due to the fact that your input data is larger than what is expected. For specifics, do an exact search on the error message, as advised earlier.
by DSguru2B
Mon Jan 22, 2007 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error
Replies: 2
Views: 767

Check your dsenv file and see if APT_LINKER and its sub-ordinate, APT_COMPILER and its subordinate, variables are set, properly.
by DSguru2B
Mon Jan 22, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To reject all my duplicates
Replies: 8
Views: 5457

The first part is easy, pass it through the aggregator, grouping on Col1 and provide 'First' as the derivation for Col2.
As for your second requirement, i have a followup question:
Do you want 10,200(in your sample data) to be in your reject file as well???
by DSguru2B
Sun Jan 21, 2007 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using </> in parallel jobs
Replies: 9
Views: 2121

Load your file into a temp table and write a sql query.
by DSguru2B
Sun Jan 21, 2007 11:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using </> in parallel jobs
Replies: 9
Views: 2121

Its a range lookup. Search on the keywords "range lookup". Do an exact search.