Search found 153 matches

by soumya5891
Sat Aug 20, 2011 11:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Equi joins
Replies: 5
Views: 3355

Let say two record set A and B
A: ID VAL IDENTITY(Nullable)
1 20 1
2 90 1
3 30 1

B: ID NME
1 AA
3 MM
Now left outer join A with B A as left link.If IDENTITY is NOT NULL means match found and if IDENTITY IS NULL means match found
by soumya5891
Tue Aug 16, 2011 11:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Alternative way
Replies: 20
Views: 12911

In the Transformer where you generate the surrogate key use the round robin partition in that very transformer only.Then the generated surrogate key will be in sequence
by soumya5891
Tue Aug 16, 2011 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Alternative way
Replies: 20
Views: 12911

Use this formula.
@INROWNUM*@NUMPARTITION + @PARTITIONNUM - @NUMPARTITION +1 +max_val_of_table and do the round robin partitioning.Make the whole process in a transformer stage
Hope this thing can work
by soumya5891
Mon Aug 15, 2011 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Alternative way
Replies: 20
Views: 12911

Use this formula.
@INROWNUM*@NUMPARTITION + @PARTITIONNUM - @NUMPARTITION +max_val_of_table
Hope this thing can work
by soumya5891
Tue Jul 05, 2011 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with lookup with only one key column
Replies: 5
Views: 3526

Re: Issue with lookup with only one key column

can you please provide your Input and expected output and a brief description of your logic
by soumya5891
Tue Jul 05, 2011 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic needed
Replies: 16
Views: 11292

Re: Logic needed

Try with this
stagevar1 = col1
stagevar2=stagevar3:/:stagevar1(If Stagevar3 is null then Stagevar1)
stagevar3=stagevar2
by soumya5891
Fri Jun 10, 2011 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD fails to recognise key for update
Replies: 4
Views: 2034

Are you selecting your business keys and type 2 column properly?
Can you please provide your business keys column and type 2 column?
by soumya5891
Fri Jun 10, 2011 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD fails to recognise key for update
Replies: 4
Views: 2034

Re: SCD fails to recognise key for update

I think in the SCD stage there are two types of functioning.
1. In build look up stage
2. Transformer stage.
First performs look up then performs transformation in the transformer.
So for the SCD stage always make the partition as auto.

Let me know if any other issue is there
by soumya5891
Thu Jun 09, 2011 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Required
Replies: 9
Views: 9530

Re: Logic Required

Let Say your key col is A. 1. First group by on A to determine count in a aggregator stage. 2. In one file write count = 1 3. In another link send count > 1 4. now join the record set retrieved in 3 with the source file. 5. Write the output of the above in a file Hope you will get the desired output
by soumya5891
Wed Jun 08, 2011 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding JOIN Stage
Replies: 5
Views: 3911

Re: Regarding JOIN Stage

You need to make a hash partition on each input link in the same order.The order of the hash keys will be same as join keys
by soumya5891
Wed Jun 01, 2011 1:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get TOP 5 sums
Replies: 6
Views: 2523

In the sort stage you need to perform a hash partioning properly
by soumya5891
Tue May 31, 2011 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: db2 connector
Replies: 2
Views: 2151

It can be done in the DB2 enterprise stage
by soumya5891
Wed May 25, 2011 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null values are dropped in the tranformer stage
Replies: 2
Views: 2360

Re: Null values are dropped in the tranformer stage

Try to use NullToValue function in a transformer stage.You can also do it in a modify stage
by soumya5891
Fri May 20, 2011 11:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to Delete duplicated records
Replies: 7
Views: 4238

Did u make the partition properly