Search found 42189 matches

by chulett
Tue Jul 26, 2011 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping records together
Replies: 12
Views: 4251

Any "hash solution" (cue Ray mentioning seven percent) would either need to be done with a Server job or a Server Shared Container in a Parallel job.
by chulett
Tue Jul 26, 2011 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting Hierarchical data
Replies: 5
Views: 2296

What database? For Oracle, you have CONNECT BY and I imagine other products have something similar.
by chulett
Tue Jul 26, 2011 2:04 pm
Forum: General
Topic: Using encrypted parameter into excecute command stage...
Replies: 1
Views: 1210

Write a routine to invoke (off the top of my head) ExecSHSilent(), it won't log that information.
by chulett
Tue Jul 26, 2011 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why drive required for processing stages
Replies: 4
Views: 1073

jwiles wrote:Transformer, for instance, can't generate rows of data out of thin air.
Actually, in a Server job it can. :wink:
by chulett
Tue Jul 26, 2011 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Permission issue while compiling parallel routine
Replies: 8
Views: 3202

If you want the syntax, you'll need to look that up yourself. Are you familiar with the concept of the "working directory"? If not, perhaps this might help. To implement, all I simply meant was this: cd /work CC -dalign -O -PIC -library=iostream -c test.cpp If the compiler is not in your P...
by chulett
Tue Jul 26, 2011 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Permission issue while compiling parallel routine
Replies: 8
Views: 3202

Why? All that matters is where you are when you run it, not where it is. Hence the notion of the "current working directory". Also, there are command line options to override where the object code is created and what it is named, use that if you insist in running this while parked in the b...
by chulett
Tue Jul 26, 2011 8:35 am
Forum: General
Topic: Extra comma on the end of the loop
Replies: 2
Views: 1022

If you have an "extra" character at the end of a string, simply trim it. You can substring out one less than the length of the string or do the same with the Left() function. For the "ls -m" approach, I don't recall ever seeing it add an extra space in the delimited list, what UN...
by chulett
Tue Jul 26, 2011 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file related doubt
Replies: 3
Views: 1543

The Sequential File stage.
by chulett
Tue Jul 26, 2011 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Permission issue while compiling parallel routine
Replies: 8
Views: 3202

No, by default it is created in the current working directory.
by chulett
Tue Jul 26, 2011 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NEW TO DATASTAGE(SCENARIO HELP)
Replies: 9
Views: 3861

No-one can post the "correct syntax" without knowing what value you have in STATE_DESC for a failed lookup. As noted, null would be a good guess so if we're going to play the guessing game, try: IsNull(DSLink8.State_desc) for the first (failure) link Not(IsNull(DSLink8.State_desc)) for the...
by chulett
Tue Jul 26, 2011 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best Fit matching
Replies: 3
Views: 1575

As I'm sure you're aware there are a number of specialty tools that do this kind of best fit or fuzzy matching, including Quality Stage. I've interfaced to one or two in the past and really wouldn't want to have to take the "roll yer own in DataStage" road, that way leads to... madness. :w...
by chulett
Tue Jul 26, 2011 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 error when I run the job
Replies: 3
Views: 3668

Yup, Google brings what seems to be the error and solution right up if you are feeling lucky.
by chulett
Tue Jul 26, 2011 7:56 am
Forum: General
Topic: DS Audit- number of rows per link
Replies: 2
Views: 4308

You don't need an "EndStageName" but rather a stage name and for a Server job the stage you should point the function to is an active stage... which pretty much means a Transformer. How automatic/intelligent are you trying to make this routine? All I would suggest is a generic routine that...
by chulett
Tue Jul 26, 2011 7:41 am
Forum: General
Topic: CDIPR2079i- xmeta
Replies: 3
Views: 4236

I don't see anything that screams registry issue to me. You haven't addressed the concern the error message brings to the table:

Ensure that user xmeta can connect to the database xmeta on host abcd.co.uk and has create table,creat view,create index and create trigger rights.

Did you, does it?