Search found 1099 matches

by kris007
Fri Sep 03, 2010 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate the same key using surrogate generator stage
Replies: 3
Views: 1619

You should design your job such a way that you lookup the incoming data against the target table to see if the NOTEID's are already existing in the target table. If they exist, you retrieve the Skey (that actually got created in the past when that NOTEID got processed for the first time) from the ta...
by kris007
Thu Aug 26, 2010 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup with constraint
Replies: 14
Views: 8222

harryhome wrote: lookup stage has option to return multilple row only for one reference link. not more for more than one link
So, do you have more than one reference link (which you did not mention in your first post)?
by kris007
Thu Aug 26, 2010 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find max values of a timestamp
Replies: 2
Views: 1397

Have you considered using a Remove Duplicates stage?
by kris007
Thu Aug 26, 2010 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup with constraint
Replies: 14
Views: 8222

Did you try doing that in a Transformer/Filter stage downstream?
by kris007
Thu Aug 26, 2010 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running multiple instances of the same job simultaneously
Replies: 4
Views: 4416

You could check couple of things:

1. See if the job is in aborted state or Not compiled state as the warning suggests.
2. Are you passing different invocation id's every time you are running the Job Sequence.
by kris007
Thu Aug 26, 2010 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Incorrect Calculation.
Replies: 14
Views: 6335

How come your Col1 after Transformation 1 is not an empty string but 0? Looks to me that is there is some inconsistency between the logic and examples you have provided.
by kris007
Wed Aug 25, 2010 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup with constraint
Replies: 14
Views: 8222

You can do a lookup on ID field and use a Filter/Transformer Stage downstream to apply the conditions.

Code: Select all

Stream.StartDate > Reference.StartDate and Stream.StartDate < Referece.EndDate And Stream.EndDate > Reference.StartDate And Stream.EndDate < Reference.EndDate
Hope that helps.
by kris007
Tue Aug 24, 2010 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function in Trf stage to drop nulls in Date column
Replies: 4
Views: 1740

Re: Function in Trf stage to drop nulls in Date column

If my source value for date column is NULL, it don't want to reject that valule in trf stage. You mentioned that you don't want to reject it and again I don't need that record which the Date field is having null value(or no value) in source, just want to discard it. Assuming you want to discard it,...
by kris007
Sat Aug 21, 2010 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to set not null column to null
Replies: 16
Views: 10807

You will need to define null field values for each column separately.
by kris007
Sat Aug 21, 2010 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remote visibility of Data Sets
Replies: 3
Views: 1855

We are implementing LPAR's at our place and from what I understood from my admin we cannot access datasets from another machine unless they are mounted. I am interested in any alternatives as well.
by kris007
Fri Aug 20, 2010 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup error - no space left on device
Replies: 2
Views: 2762

The error message says it all. The process is using up all the space. How many records are you reading from the reference lookup? Splitting your job might help you avoid this error if you have multiple lookup stages.
by kris007
Fri Aug 20, 2010 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect the database
Replies: 3
Views: 2452

Are you connecting to the database on a remote server? If so, you need to invoke the DB2 instance using the environment available.
by kris007
Wed Aug 18, 2010 6:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Clear & PH& logs & RT_LOG
Replies: 9
Views: 6230

We have had instances where the RT_LOGnnn files got huge and it slowed the start up times of the parallel jobs literally around 2-4 minutes. We cleared the log files and things came back to normal.
by kris007
Wed Aug 18, 2010 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting where lookup is found
Replies: 3
Views: 1116

Put a copy stage at the end of the output link coming out of the lookup stage. Collect all the records you need via the reject link. Make sure you don't have any output links coming out of the Copy Stage.