Search found 229 matches

by pnchowdary
Fri Jul 08, 2005 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance question
Replies: 6
Views: 1949

Hi amsh, I feel that the big parallel job is better than splitting it into 2 or 3 smaller jobs. If you split the big job into smaller jobs and then run them in sequence, possibly using a job sequencer to achieve the same result. The overhead in initializing,starting,processing,writing the log and no...
by pnchowdary
Fri Jul 08, 2005 12:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nls_read_delimited() - invalid quotes
Replies: 17
Views: 8702

Hi Vinay, Your question is not clear. I am suggesting three solutions based on different interpretations of your problem. 1) If you meant that your source file is having quotes and you want to read it - In format tab in the sequential file, make sure you put the quote character field to " and a...
by pnchowdary
Fri Jul 08, 2005 10:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help find DataStage function !!
Replies: 10
Views: 9518

Hi Me48,

I am sorry that I didnt check the website until now. I guess all your doubts have already been cleared by craig. If still you have any problems, let me know and I will be glad to help you out.

Thanks,
Naveen
by pnchowdary
Thu Jul 07, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fatal error from UtilityAbortToLog
Replies: 3
Views: 2945

Hi Heather,

This is what code -8 means

Equ DSJE.NOTINSTAGE To -8 ;* StageName was DSJ.ME and the caller is not running within a stage
by pnchowdary
Thu Jul 07, 2005 2:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help find DataStage function !!
Replies: 10
Views: 9518

There was a small error in the logic i mentioned above, Please use the below logic in your transformer

Code: Select all

If (Count(UPCASE(INPUTLINK.COLA),"REVERSAL")) > 0 Then (INPUTLINK.COLB * -1) Else INPUTLINK.COLB
by pnchowdary
Thu Jul 07, 2005 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help find DataStage function !!
Replies: 10
Views: 9518

You can use the following logic in your transformer to get the desired result

If (Count(UPCASE(INPUTLINK.COLA),"REVERSAL")) > 0 Then (INPUTLINK.COLB = INPUTLINK.COLB * -1) Else INPUTLINK.COLB

Try it and let me know if it works for ya.
by pnchowdary
Thu Jul 07, 2005 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: concatenation of columns
Replies: 6
Views: 3705

I have used this approach in server jobs, I am not sure whether this works for a parallel job, but you can give it a try. Without using any special stage, you can do it in a regular sequential file 1) On the input to the sequential file , you will have all your individual columns 2) On the output of...
by pnchowdary
Wed Jul 06, 2005 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector error message
Replies: 3
Views: 1094

Hi Reddy,

After your Link Partitioner stage, Are you writing the data subsets into seperate sequential files, before sending them as inputs into the Link Collector stage?
by pnchowdary
Tue Jul 05, 2005 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 4569

Hi Ray,

Thanks for the prompt reply to my post. The parameter had some null space embedded in the string. I removed the null space and it worked. Once again thanks for pointing me in the right direction.

Thanks,
Naveen
by pnchowdary
Tue Jul 05, 2005 12:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing files dynamically
Replies: 4
Views: 2172

Hi Satish,

I believe you can use Wait-For-File-Activity stage in the job sequencer and wait for the file to appear in the designated directory. After the file appears, you can kick of a datastage job, which processes the input file according to your transformation rules.

Thanks,
Naveen
by pnchowdary
Tue Jul 05, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parent Child Records in Flat File
Replies: 2
Views: 1428

Hi Morris,

I believe that the parent/child relationship can be modelled in datastage using complex flat file stage. Dsx Gurus, please correct me, if I am wrong.
by pnchowdary
Tue Jul 05, 2005 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 4569

Hi Ray, I tried to implement the solution pointed out by you and I am getting an error. I have defined a job parameter called TestOutput and have populated it with the output value of $CommandOutput (actual value is "Execute_Command_0.$CommandOutput") The following is the log of the job ru...
by pnchowdary
Sat Jul 02, 2005 1:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 4569

Hi Ray,

Thanks for the detailed solution to my problem. I will follow your solution.

Thanks,
Naveen
by pnchowdary
Fri Jul 01, 2005 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 4569

Hi Duke,

I am using server jobs, so I guess I can not use filter stage. I will try the other options.

Thanks,
Naveen
by pnchowdary
Fri Jul 01, 2005 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential Stage in PX
Replies: 4
Views: 1666

What version of datastage are you using?. I am using version 7.5 and I see that option in the sequential file stage on the ouput -> properties tab. Maybe the DS gurus can tell us more.