Search found 531 matches

by prasson_ibm
Tue Jun 18, 2013 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage job getting completed but showing running in Dsgnr
Replies: 5
Views: 2649

Hi,
can you please explain more to help others.Which version of datastage you are using.Once your job finished,where can you see it still running.What happens when you retrigger the same job again.
by prasson_ibm
Tue Jun 18, 2013 6:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange Lookup warning
Replies: 5
Views: 4030

Hi,
Even in the case you are getting the warning and names are not duplicate in both the input links,they are usually being propagated invisibly through the job because RunTime Column Propagation is turned on.
by prasson_ibm
Tue Jun 18, 2013 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange Lookup warning
Replies: 5
Views: 4030

Hi,
Change the column name in one of the link and try again.
by prasson_ibm
Sat Jun 15, 2013 11:08 am
Forum: IBM QualityStage
Topic: MQ connector stage clarification
Replies: 3
Views: 4853

Hi, We are also using MQ in our project beause it is already used by middleware technologies and we had to plugin DS accoding to customer rqeuirment. We are recieveing XML events in MQ,which decides which job need to be triggered in datastage. We parse this xml and trigger our job.later we send noti...
by prasson_ibm
Thu Jun 13, 2013 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation/Summation
Replies: 9
Views: 5951

Hi,
After sorting,you can use transformer.write below logic in stage variable:-

Code: Select all

Svar=If keychange=1 then Inputcol.Year else Svar
Pass this variable to output derivation of Year then aggregate the data as suggested by chullet.
by prasson_ibm
Thu Jun 13, 2013 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation/Summation
Replies: 9
Views: 5951

Hi,
After sorting,you can use transformer.below is the logic:-

Code: Select all

Svar=If keychange=1 then Inputcol.Year else Svar
Pass this variable to output derivation of Year then aggregate the data as suggested by chullet.
by prasson_ibm
Tue Jun 11, 2013 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset
Replies: 7
Views: 2410

Dataset data file will be created at resource disk path used in configuration file.
by prasson_ibm
Thu May 30, 2013 5:37 am
Forum: General
Topic: It took more than ten years
Replies: 11
Views: 7084

Congrats ray!!!
by prasson_ibm
Wed May 29, 2013 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To get the output for counting the occurence of the rows
Replies: 3
Views: 3914

Hi,

Create stage variables in transformer in below order:-

Code: Select all

CURR=Input.Col
COUNTER=if CURR=PREV THEN COUNTER+1 ELSE 1
SEQUENCE=if CURR=PREV THEN SEQUENCE+1 ELSE SEQUENCE
PREV=CURR
Initialze SEQUENCE to 1.
Map it to output derivation.It should be your result that you are looking for.
by prasson_ibm
Tue May 28, 2013 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header Record Validation in a fixed width file
Replies: 11
Views: 6476

Hi Chullet,
Sure,you are saying is logical,thanks for your suggestion.
by prasson_ibm
Tue May 28, 2013 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header Record Validation in a fixed width file
Replies: 11
Views: 6476

Hi Ray,
I saw they are running datastage on unix platform,thats why i suggested.
by prasson_ibm
Tue May 28, 2013 1:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header Record Validation in a fixed width file
Replies: 11
Views: 6476

Hi, Before processing a file,design file validation job.Use two external source stages,your job design will be like this:- External source1---->Col Gen dummy-->Join On dummy----Transf---Copy External Source2---->Col Gen Dummy---> In External Source1 Stage Write below unix command:- head -1 File Name...
by prasson_ibm
Mon May 27, 2013 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help on job design.
Replies: 3
Views: 1889

Hi,
I dont think parallel job is correct and efficient approach to split the files like this.You can better do in unix level,write a script to split the files the do the processing.
by prasson_ibm
Fri May 24, 2013 4:51 am
Forum: General
Topic: options in Job termination Activity sequence
Replies: 2
Views: 2832

options in Job termination Activity sequence

Hi, In Job termination activity stage,there are below options:- If any subordinate jobs are still running: A) Send STOP request to all running jobs And wait for all jobs to finish B) Abort Without sending STOP requests Wait for all jobs to finish first In my understand if i select both the checks in...
by prasson_ibm
Wed May 22, 2013 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inner Join
Replies: 6
Views: 3424

What partitioning logic you have applied on the input links of join stage?