Search found 11 matches

by veerabusani185512
Thu Jul 14, 2011 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating many output files
Replies: 10
Views: 4675

Re: creating many output files

Thanks for the reply Phil and DSGuru. I had also suggested my client about the Server job but client did not accepted it as the source data is 1.6Billion records. So I am planning to do it in Shell script. Thanks for the suggestion.
by veerabusani185512
Wed Jul 13, 2011 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating many output files
Replies: 10
Views: 4675

creating many output files

Hi, I have one source file ( dataset) and I need to create many output files from this source file based on different conditions. There are around 1000 conditions and I need to create 1 output file for each condition. I am thinking of creating 30 jobs and each job will create 30 or 40 outpufiles. Is...
by veerabusani185512
Mon Jun 20, 2011 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage job creating mainframe dataset
Replies: 5
Views: 6176

Hi Criag,

We have not installed 390 edition of DS.
by veerabusani185512
Sun Jun 19, 2011 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage job creating mainframe dataset
Replies: 5
Views: 6176

datastage job creating mainframe dataset

Hello All, Iam new in handling mainframe datasets.For extracting data from mainframe datsets from mainframes environment we are using ZOS file stage with CFF stage sample job design is as below Zos Stage -->CFF Stage -->> then processing logic --> final target(Sequential or dataset or tables) We hav...
by veerabusani185512
Wed Jun 15, 2011 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle function IN equivalent in Datastage
Replies: 3
Views: 2706

Oracle function IN equivalent in Datastage

Hi,

Is there any function available in DS equivalent to Oracle IN or NOTIN functions?

I need to implement below logic in my job.
If the column PRODUCT value is IN ('AA','BB','CC','DD','EE','FF'), then the output is 1 else 0.can you please suggest any ideas?

Thanks & Regards,
Veera.
by veerabusani185512
Wed Feb 02, 2011 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to separate the duplicate and rest in other file
Replies: 7
Views: 3764

If your source is Sequential file then..In properties tab-->Filter option...try to use sort -u #FileNamePath#....Which will select only unique records from sequential file stage
by veerabusani185512
Tue Feb 01, 2011 3:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg - Initialize Env variables inside job
Replies: 3
Views: 3346

Use Parameter sets in job....Parameters of paramter sets can be updated using Datastage job ....For every parameter set there will be a file which will have paramter name and Parameter value(Which will be default)..If your job can update this file then we can pass that parametr to next job run time
by veerabusani185512
Wed Jan 05, 2011 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container
Replies: 5
Views: 2678

Compile all the jobs

For any change in shared container execpt addtion of parameters...we have to compile all the jobs which are using that shared container to get that change
by veerabusani185512
Thu Dec 23, 2010 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setNull() output in Char(1) data type
Replies: 5
Views: 4584

Try this one

If ( trim(nulltoempty(monitoring_flag)) ='Y' or trim(nulltoempty(monitoring_flag)) = 'N')
Then monitoring_flag else setnull()
by veerabusani185512
Thu Jan 14, 2010 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Job Doesn't Abort
Replies: 8
Views: 4753

Hi Mike, If all jobs in the sequence are parallel,then add a output link for each the jobs in sequence and join all those link using sequencer and then ouput of the sequencer to a terminator stage. In each of the job activity stage apply trigger condition select failed conditional and in the sequenc...
by veerabusani185512
Thu Jan 14, 2010 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Job Doesn't Abort
Replies: 8
Views: 4753

Re: Sequence Job Doesn't Abort

Hi Mike, In the job activity stage->Trigger tab...You can set the condtion by which next stage will be or not execute.... in our project we generally select Custom conditon option in drop down and include condition JOB_NAME.$JobStatus= DSJS.RUNOK OR JOB_NAME.$JobStatus= DSJS.RUNWARN which indicates ...