Search found 53125 matches

by ray.wurlod
Mon Feb 27, 2006 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Error
Replies: 9
Views: 3398

Keep in mind that - potentially - every stage in a parallel job requires one process on each processing node in the configuration file, not to mention one section leader process per job per processing node and one conductor process per job on the conductor node. Multiply this by 18 and you have way ...
by ray.wurlod
Mon Feb 27, 2006 10:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Error
Replies: 9
Views: 3398

Keep in mind that - potentially - every stage in a parallel job requires one process on each processing node in the configuration file, not to mention one section leader process per job per processing node and one conductor process per job on the conductor node. Multiply this by 18 and you have way ...
by ray.wurlod
Mon Feb 27, 2006 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Routines
Replies: 2
Views: 1167

Someone seems to have reinvented the echo "" > filename command! :roll:
by ray.wurlod
Mon Feb 27, 2006 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View data problem in Oracle Enterprise Edition Stage
Replies: 5
Views: 1630

Assuming you are running version 7.5x2 (the only parallel version certified for Windows), you can use UNIX commands because MKS Toolkit is installed. However, there is no /.dshome file. The dsenv file is in the DataStage engine directory, by default D:\Ascential\DataStage\Engine (substitute the corr...
by ray.wurlod
Mon Feb 27, 2006 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pattern matching in parallel
Replies: 2
Views: 1199

In which stage type? You could use an External Filter stage and use the regular expression syntax. You could use a Filter stage and use SQL WHERE clause syntax.
by ray.wurlod
Sun Feb 26, 2006 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fundamentals of Basics Routines
Replies: 21
Views: 5659

ADVERTISEMENT

We expect shortly to announce availability of a beginners' class in writing server routines. (This is already available from my personal business, we're working on offering it through DSXchange.)
by ray.wurlod
Sun Feb 26, 2006 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: operator and developer user groups
Replies: 3
Views: 1829

Welcome aboard. :D These are not "groups" as such, they're properly referred to as DataStage roles. Each role can have one or more operating system groups associated with it. Thus, for example, you might set up UNIX groups for each project and another for the operator staff. Once these have been set...
by ray.wurlod
Sun Feb 26, 2006 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call a oracle sequence inside a column in Datastage
Replies: 9
Views: 4762

Trigger would be slower. You'd have the overhead of the trigger, which would have to get the NEXTVAL from the sequenece anyway and then modify the row being inserted. Eschew triggers for this kind of work.
by ray.wurlod
Sun Feb 26, 2006 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing a custom routine
Replies: 2
Views: 1238

If INDEX(strValue,'-',1) > 0 Then Ans = Ereplace(ValueString,'-':Substrings(ValueString,INDEX(strValue,'-',1)+1,1),'-' : Substrings(upcase(ValueString),INDEX(strValue,'-',1)+1,1)) End would also solve the problem of the return variable (named ...
by ray.wurlod
Sun Feb 26, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control General Question
Replies: 30
Views: 9255

I have worked on modules which involved around 150 - 200 jobs running one shot. At such place I can't go for sequencers. Wrong. There is actually no limit. To keep things easy to read/understand, build a hierarchy of control, using Job Activities to call other job sequences. I'm confident you can f...
by ray.wurlod
Sun Feb 26, 2006 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job stuck for no reason
Replies: 4
Views: 1086

I rather suspect Arnd was subtly suggesting a search. 8)
by ray.wurlod
Sun Feb 26, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid NULL to reject - in SWITCH case
Replies: 20
Views: 6515

ANY data type can hold null, provided that the column is defined as nullable (that is, not defined as NOT NULL).

Null (unknown value) is not the same as "" (empty string, or zero-length string, which is a known value). You can not put "" into any kind of numeric column.
by ray.wurlod
Sun Feb 26, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fault type is 11. Layer type is BASIC run machine.
Replies: 3
Views: 3528

From memory (in an airport lounge again!) DSP.Open may have something to do with initializing a stored procedure call. If that turns out to be the case, check that the SP definition exists in your repository. Curiously this airport does not have a copy of the source code for DSP.Open, so I can't adv...
by ray.wurlod
Sat Feb 25, 2006 2:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string YYYYMMDD to DB2 date column
Replies: 2
Views: 1192

Try Iconv(StrCol, "DDMY")
by ray.wurlod
Sat Feb 25, 2006 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control General Question
Replies: 30
Views: 9255

I've met that challenge in the last eight out of eight months. 8)
Guess that makes the point a strongly as anything else I may have posted.