Search found 42189 matches

by chulett
Tue Mar 29, 2016 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic vertical pivot issue
Replies: 14
Views: 6235

I didn't take the SQL into account either, just going by the phrasing in the original post. A more complete / complex example may have helped. [shrug]
by chulett
Tue Mar 29, 2016 3:10 pm
Forum: General
Topic: Passing User variable to Exception Handler
Replies: 11
Views: 3858

Everything you are passing around is considered a 'parameter' in this context. However, clarify for us what you mean by 'User Variables', are you referring to something you've actually done in a User Variables Activity stage? Note that you don't need to pass anything to the Exception Handler (nor ca...
by chulett
Tue Mar 29, 2016 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup fails if key is decimal, and input has a period
Replies: 7
Views: 5917

Edit your first post and check "Disable Smilies in this post".
by chulett
Tue Mar 29, 2016 11:45 am
Forum: General
Topic: Passing User variable to Exception Handler
Replies: 11
Views: 3858

If something supports parameters, like an email subject line, it also has an instance of the External Parameter Helper associated with it. Rather than typing in things by hand, use it to 'pick' the appropriate downstream parameter value from the list it shows you. Added bonus: it knows whether it ne...
by chulett
Tue Mar 29, 2016 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic vertical pivot issue
Replies: 14
Views: 6235

And I suspect you are... under-thinking it. :wink:

I got the impression the derivation was dependent on the results across the data set by account and currency, not just what was present on each line.
by chulett
Tue Mar 29, 2016 7:13 am
Forum: General
Topic: Sequencer 'SQY' was entered, but never exited
Replies: 11
Views: 4542

8)
by chulett
Tue Mar 29, 2016 7:12 am
Forum: General
Topic: What's the best method to write complex derivations?
Replies: 18
Views: 6433

Of course, just haven't really bothered yet. It's on my Rainy Day List, page 12. :wink:
by chulett
Mon Mar 28, 2016 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical pivot design challenge
Replies: 15
Views: 5521

Based on your breaks, you either want to set the derivation to Score for a new group or append using something like StageVariable : ',' : Score for the rest inside the loop for that group.
by chulett
Mon Mar 28, 2016 3:20 pm
Forum: General
Topic: ExeCmd always execute SERIALLY within a single Sequence Job
Replies: 9
Views: 2588

Re: ExeCmd always execute SERIALLY within a single Sequence

eli.nawas_AUS wrote:Is this normal behavior?
Yes.

Perhaps a scripted approach is in order for these 50+ commands?
by chulett
Mon Mar 28, 2016 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical pivot design challenge
Replies: 15
Views: 5521

While you certainly could use the Field() function over and over to parse the string out to fields, the Column Import stage would automate all that for you.
by chulett
Mon Mar 28, 2016 12:49 pm
Forum:
Topic: IGC not updating job characteristics
Replies: 6
Views: 3789

<moved post here as this is where all of the IGC conversations are going on>
by chulett
Mon Mar 28, 2016 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic vertical pivot issue
Replies: 14
Views: 6235

With the same number of rows going out as coming in, you don't really have a 'vertical pivot' IMHO, you just need to decide what one of several output columns a particular input value needs to go in based on what is in each 'group' it belongs to. Which to me implies a fork join design where one path...
by chulett
Fri Mar 25, 2016 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical pivot design challenge
Replies: 15
Views: 5521

True! Good point. :D

Simplifies the 'appending' part.
by chulett
Fri Mar 25, 2016 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Vertical pivot design challenge
Replies: 15
Views: 5521

Off the top of my head, looping should work and they have specific functions that allow you to hold on to a record and keep appending fields to it until the group changes at which point you send it on its way. While not exactly your scenario, the functions are listed here with a decent amount of det...
by chulett
Fri Mar 25, 2016 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup vs. Join
Replies: 6
Views: 5986

Your comments on the Lookup File Set are spot on, IMHO, but they do come in handy if you have a situation where the same set of lookup data is needed by multiple jobs. Build once, leverage many. And Ray mentioned the 'time shifting' aspect of them, if they are static enough the build could be shifte...