Search found 109 matches

by bond88
Wed Dec 12, 2012 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle Blob ?
Replies: 10
Views: 3920

Thanks,

I will try copy stage. At this point there is no need to do anything with BLOB. I just have a new doubt if we want to do some transformation with BLOB how can we split it?
by bond88
Wed Dec 12, 2012 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle Blob ?
Replies: 10
Views: 3920

How to handle Blob ?

Hi,
Please suggest me how to handle blob column? Its working fine if it is a direct transfer from one table to another table but its throwing error if we use transformer stage. I tried to use to_char(BLOB_Column) but it didn't work out as well. Any input ???

Thanks,

Regards,
Lohith Sama.
by bond88
Tue Dec 11, 2012 10:14 am
Forum: General
Topic: Is it possible to call a job from another program?
Replies: 3
Views: 2619

Thanks Abhijain,
Could you please provide some more details ? I have datastage on windows server.
by bond88
Mon Dec 10, 2012 10:53 am
Forum: General
Topic: Is it possible to call a job from another program?
Replies: 3
Views: 2619

Is it possible to call a job from another program?

Hi,
Is it possible to run a job from an external program like calling a job from Java or from a webpage?

Thanks,
by bond88
Fri Dec 07, 2012 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I apply this logic?
Replies: 11
Views: 4668

Thanks Ray, One question, I didn't see any difference by selecting key as a partitioning algorithm. Even it returns same rows before also. I used sort stage to sort on key, id and id2 and after that I used remove duplicates. Whats the purpose of using partitioning (hash or modulus) on key. Thank you,
by bond88
Thu Dec 06, 2012 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I apply this logic?
Replies: 11
Views: 4668

ray.wurlod wrote:Partition by ID. Sort by ID and Pin. Use Remove Duplicates to preserve last record in each group, where groups are defined by ID. ...
Hi Ray,
I can sort id and pin's by using sort stage. How could I get done the partition on ID? Please suggest me.

Thanks,
by bond88
Thu Dec 06, 2012 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I apply this logic?
Replies: 11
Views: 4668

chulett wrote:Aggregator. Group by the first column, take max() on both of the other two columns. ...
Thanks Chulett,
I am able to group by ID in aggregator state how can I select max() values of pin1 and pin2 ? Please suggest me.

Thanks,
by bond88
Thu Dec 06, 2012 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I apply this logic?
Replies: 11
Views: 4668

How can I apply this logic?

Hi, I have a input like this ID Pin1 Pin2 1 123 0 1 855 1 1 855 2 2 52 0 2 120 1 I need output like this ID Pin1 Pin2 1 855 2 2 120 1 Conditions: Unique ID Pin 1 maximum if you have 2 records with maximum Pin 1 then take maximum Pin 2 Any suggestions? Thanks,
by bond88
Tue Dec 04, 2012 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental Load
Replies: 2
Views: 1232

Thanks ArndW. I used filter stage to get the required row.
by bond88
Tue Dec 04, 2012 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental Load
Replies: 2
Views: 1232

Incremental Load

Hi, I need to get the modified data from source. There is no timestamp at source but there is at target. I am comparing source and target's every column as key in Change Capture stage. But I am getting both previous and current values as two rows. I need only the latest one how can I achieve that? T...
by bond88
Mon Dec 03, 2012 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple rows to single row
Replies: 9
Views: 6122

ray.wurlod wrote:Why are you using the Transformer stage? The PXPivot stage can do vertical pivoting such as you require with a lot less effort.

Sure, it can be done with a Transformer stage, but why would ...
Hi Ray,
I am not able to see your message completely.
by bond88
Mon Dec 03, 2012 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple rows to single row
Replies: 9
Views: 6122

Sri Vidya, I am getting data from different source. I can't able to use Listagg function. By using pivot enterprise stage and by selecting vertical pivot I am able to do this. But it is asking array size. Array size is not same for all key's and that too I need all the columns data in to one column ...
by bond88
Mon Dec 03, 2012 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple rows to single row
Replies: 9
Views: 6122

Thanks Ray,
I am using transformer stage to achieve reverse pivot but it doesn't work for me. I saw so many posts those are based on server jobs and I am looking for parallel (Px) job. Could you please guide me?
by bond88
Mon Dec 03, 2012 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple rows to single row
Replies: 9
Views: 6122

Multiple rows to single row

Hi all, Can anyone please help me with this issue? Issue: Data in a table is like this Role ID ID2 Var 112627 82839 abcd COPDPI 112627 85899 efgh COPDPI 112627 78209 ijkl PDPI I want to convert it into (descending order by Role) Role ID ID2(var) 112627 [78209],[82839],[85899] ijkl(PDPI);abcd(COPDPI)...
by bond88
Mon Dec 03, 2012 10:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle full refresh situation if job fails?
Replies: 2
Views: 1623

@BI-RMA

Thank you,
Currently I am doing that, I am using stage objects and once if it is successful then I am copying to target from stage objects. I was wondering there is anyway to handle this situation without using stage objects.

Thanks,