I have single Job to run multiple Transformations. I want to parameterize this single job by some parameter that decides if all the transformation has to run or a single transformation has to run based on the name passed.
E.g
Start --> PARAMETER( Transformation_NAME OR ANY_IDENTIFIER that will decide to run all the transformation )
if (Parameter = Transformation_Name) run only that particular transformation else if (Parameter = ANY_IDENTIFIER ) run all the transformations as part of that main job
Simple Evaluation
step method described below is a very good solution. – AlainD