Search found 320 matches

by mydsworld
Tue Sep 12, 2006 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop Properties
Replies: 2
Views: 1377

Does anyone know that. Thanks
by mydsworld
Mon Sep 11, 2006 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop Properties
Replies: 2
Views: 1377

Buildop Properties

I have the following two queries :- 1. How to create a Buildop stage which will have repeating options.For example multiple options (say 'Key') can be chosen from the 'Options'/'Available properties to add' so that we can have something like :- Key = 'ID' Key = 'Name' .. .. I couldn't do that with B...
by mydsworld
Thu Sep 07, 2006 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildops
Replies: 5
Views: 1856

Thanks for your advise.

I even tried that. 'y' is always 0.

I tried another approach. I made the auto-read for input false. Now I am defining the control (looping) in my own. In that case the dbout I am having is where to put the entire code : Pre-Loop,Per-Record,Post-Loop editor.
by mydsworld
Thu Sep 07, 2006 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildops
Replies: 5
Views: 1856

I tried that. I have defined the following in Definitions : #include<stdio.h> #include<iostream.h> int x ; static int y ; In Pre-Loop : y = 0 ; Then in Per-Record : x = in0.id ; if(x != y) { < Taking some action> ; } else { < Take some other action > ; } y = x ; Input is auto-read. But I find contro...
by mydsworld
Thu Sep 07, 2006 4:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildops
Replies: 5
Views: 1856

Buildops

Can anyone please tell me how to use a variable (to be used in 'Per-Record' ) to remember its value.