Page 1 of 1

Getting the stage type in DSX

Posted: Tue Nov 08, 2011 5:54 am
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.

Posted: Tue Nov 08, 2011 2:52 pm
by ray.wurlod
Look for the class of object, for example CSequentialFileStage.

Posted: Tue Nov 08, 2011 10:20 pm
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.

Posted: Tue Nov 08, 2011 11:32 pm
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.

Posted: Wed Nov 09, 2011 12:14 am
by g_rkrish
Thanks Ray!!!