Getting the stage type in DSX

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
g_rkrish
Participant
Posts: 264
Joined: Wed Feb 08, 2006 12:06 am

Getting the stage type in DSX

Post by g_rkrish »

Is there any way we can get the stage type in dsx.for ex in a simple job if we design a simple seq file--->xfrm---datset.will i get any info on the dsx that i used seq file stage,transform and datatset.Not the stage name,i may give seq for dataset but i need the type of the stage as dataset.i am seeing only the operator as import or export under the stage names in dsx.
RK
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Look for the class of object, for example CSequentialFileStage.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
g_rkrish
Participant
Posts: 264
Joined: Wed Feb 08, 2006 12:06 am

Post by g_rkrish »

Ray,
I found it comes as like this in 8.5

StageNames "Seq|Seq_1|Aggregator_2"
StageTypeIDs "PxSequentialFile|PxSequentialFile|PxAggregator"

thanks for your help.
RK
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

PXSequentialFile is a class identifier. This is the parallel Sequential File stage. The CSequentialFileStage class is for the server Sequential File stage.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
g_rkrish
Participant
Posts: 264
Joined: Wed Feb 08, 2006 12:06 am

Post by g_rkrish »

Thanks Ray!!!
RK
Post Reply