Build Op Stage problem

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
dsx_venkat
Participant
Posts: 12
Joined: Thu Sep 01, 2005 10:49 pm

Build Op Stage problem

Post by dsx_venkat »

Hi All,

I am trying to create my own parallel stage(build stage), can any one tell me how for the build stage programming is differ from C/C++ syntax.

i already referred to the help manual, but need more information.


Thanks
venkat
bcarlson
Premium Member
Premium Member
Posts: 772
Joined: Fri Oct 01, 2004 3:06 pm
Location: Minnesota

Post by bcarlson »

The code for the different pieces of the build is C/C++. Each datatype that DataStage uses has a corresponding C++ class. Strings are APT_String, Decimals are APT_Decimal, etc. The header files that describe the classes and their corresponding methods are in the online documentation (PDF's) or you can look them up directly in your DataStage installation: $APT_ORCHHOME/include/apt_util.

You should be able to use any C or C++ construct, create your own classes, etc. I know that you can even create your own libraries and header files, but I have not done that yet. Can anyone else elaborate on how this can be done?

HTH,
Brad.
Post Reply