Search found 42189 matches

by chulett
Sat Mar 22, 2014 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help to Implement the below logic in Transformer stage
Replies: 0
Views: 1161

Sorry but what aspect of this do you need help with? It all looks pretty straight-forward to me as you basically have the derivation expressions spelled out for you in the requirements you've been given. Do the calculations in stage variables and then set up the derivations for the two "AMT&quo...
by chulett
Fri Mar 21, 2014 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 8
Views: 3959

Just because it's valid COBOL syntax doesn't mean the stage supports it. We've seen those kind of issues before here, best to check with IBM as you noted.
by chulett
Fri Mar 21, 2014 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sum of n number of rows
Replies: 9
Views: 6215

Code: Select all

Mod(@INROWNUM,10) = StageVar -- 
Header/Detail: If StageVar = 0 Or @INROWNUM =1 Then 'H' Else 'D' 
GroupNumber: If StageVar = 0 Then GroupNumber+1 Else GroupNumber
Initial Value of GroupNumber = 1
by chulett
Fri Mar 21, 2014 7:24 am
Forum: General
Topic: Which version of DS to go for
Replies: 9
Views: 2587

Prefer any flavor of UNIX. :wink:
by chulett
Fri Mar 21, 2014 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle this in DS?
Replies: 7
Views: 3922

Well... you can certainly filter using constraints in a transformer and then put the results into a hashed file to perform the lookup against in a subsequent transformer.
by chulett
Thu Mar 20, 2014 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Composer Step Mapping
Replies: 3
Views: 2136

I'm curious... are we resolved here now?
by chulett
Thu Mar 20, 2014 10:20 am
Forum: General
Topic: How to come out of end loop in Sequence
Replies: 1
Views: 1129

Re: How to come out of end loop in Sequence

ds_8112 wrote:( I mean from the end loop activity stage we can have only one link back to the start loop activity stage)
Not true. That link back to start is created automatically but you can certainly create links that go onwards from that stage to whatever you need to do once the loop finishes.
by chulett
Thu Mar 20, 2014 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle this in DS?
Replies: 7
Views: 3922

... and make liberal use of Preview until everything really lines up properly when posted.
by chulett
Wed Mar 19, 2014 9:27 pm
Forum: General
Topic: Running a .bat file from Execute Command Fails
Replies: 7
Views: 3375

Just to complete this, the CWD or Current Working Directory of any running job is the base Project directory of the job. That is where it is looking for your file.
by chulett
Wed Mar 19, 2014 2:54 pm
Forum: General
Topic: Running a .bat file from Execute Command Fails
Replies: 7
Views: 3375

The type function can't find "tableNotFound1.txt" - fully path it or "cd" to the directory where it lives first to use that relative path.
by chulett
Wed Mar 19, 2014 1:49 pm
Forum: General
Topic: Running a .bat file from Execute Command Fails
Replies: 7
Views: 3375

Wanted to check as you can't execute a command on a drive letter without switching to that drive first. What does the .bat do? Guessing the error is from an internal step as the error would be different if it wasn't finding the batch file itself: 'whatever' is not recognized as an internal or extern...
by chulett
Wed Mar 19, 2014 1:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Sort not agreeing with DataStage Sort
Replies: 8
Views: 3185

So then we're resolved it would seem.
by chulett
Wed Mar 19, 2014 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Priority for records in Datastage
Replies: 5
Views: 2089

I understand what it could be, would like the original poster to clarify what it actually is. And don't read too much into examples posted, as many times they are made up and can differ from reality, especially when they start with "for example" or "something like this". :wink: A...
by chulett
Wed Mar 19, 2014 12:51 pm
Forum: General
Topic: Running a .bat file from Execute Command Fails
Replies: 7
Views: 3375

What drive letter is DataStage installed on - something other than D:?
by chulett
Wed Mar 19, 2014 10:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Sort not agreeing with DataStage Sort
Replies: 8
Views: 3185

Do you have any options to override the default behaviour of the ORDER BY clause? Don't know squat about DB2 but I saw mention of a COLLATION_KEY option...