Search found 53125 matches

by ray.wurlod
Thu Mar 01, 2007 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGINT while accessing SQL Server DB via ODBC Enterprise
Replies: 6
Views: 1252

Is the behaviour consistent? That is, is it always the same jobs/queries that hang? Have you tried executing the same queries using a client other than DataStage, but from the DataStage server machine? Have you employed the test/diagnostic tools that are in the branded_odbc directory?
by ray.wurlod
Thu Mar 01, 2007 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop
Replies: 5
Views: 1829

What are the data sources containing these values? Whatever the case, you are going to need to write some code, since you are on version 6.

But please begin with an English language specification of the expected output from this processing.
by ray.wurlod
Thu Mar 01, 2007 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range Lookup
Replies: 12
Views: 2936

Corporate discounts are available. There's a link from the DSXchange home page to information about these. Premium membership money is entirely consumed helping to pay for the bandwidth costs of DSXchange.
by ray.wurlod
Thu Mar 01, 2007 12:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SME
Replies: 15
Views: 4466

Wasn't Mr Smee Captain Hook's offsider?
by ray.wurlod
Wed Feb 28, 2007 8:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: awk command
Replies: 11
Views: 3087

You need at least a format string.
by ray.wurlod
Wed Feb 28, 2007 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range Lookup
Replies: 12
Views: 2936

The stage variable could have been more simply derived as Source.Rng >= LookupData.Rng1 And Source.Rng <= LookupData.Rng2 If expression Then @TRUE Else @FALSE is redundant because expression itself must return a true/false result. In DataStage BASIC, 0 or "" (or anything that is equivalent) is regar...
by ray.wurlod
Wed Feb 28, 2007 8:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop
Replies: 5
Views: 1829

Since you have not asked a question I will assume that you have a solution to the situation you describe. Can I therefore ask you to post that solution?

If you don't have a solution, can you post a question?
by ray.wurlod
Wed Feb 28, 2007 8:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job Status at Job Level
Replies: 3
Views: 1057

The status of a job captured within a job will always be "Running". This does not contribute much to your understanding of what is happening. In an after-job subroutine you can capture the interim status (what the status will be once the subroutine finishes) but this is not available until all rows ...
by ray.wurlod
Wed Feb 28, 2007 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGINT while accessing SQL Server DB via ODBC Enterprise
Replies: 6
Views: 1252

Try disabling the job monitor (APT_NO_JOBMON) to see whether it's the source of the signals.
by ray.wurlod
Wed Feb 28, 2007 5:41 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: No response from server testing connection
Replies: 7
Views: 4666

...anyone being paid by the hour! :lol:
by ray.wurlod
Wed Feb 28, 2007 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: InitCap in Transformer
Replies: 4
Views: 1814

There's nothing out of the box, but it would be a fairly straightforward parallel routine to write. Consider your business rules, though. InitCap might also need to occur after certain other characters, like O'Brien or Sarbanes-Oxley. Then there are the exceptions, such as fforbes-Hamilton, MacDonal...
by ray.wurlod
Wed Feb 28, 2007 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_DUMP_SCORE output
Replies: 9
Views: 3529

eCollectAny has no effect when the receiving stage operates in parallel mode.
by ray.wurlod
Wed Feb 28, 2007 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL referencing a list
Replies: 16
Views: 4846

The first format is easiest; the routine reads a line at a time and returns a comma-delimited list. You then use the result of the function as your "list of things" in a StartLoop activity in a job sequence.
by ray.wurlod
Wed Feb 28, 2007 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing If ElseIf End Function in DataStage
Replies: 5
Views: 13299

Note that ELSE IF is two words - there is no ELSEIF or ELIF operator. Note also that this is a value-generating expression, not a statement in a function, so that assigment operators and statement terminators are inappropriate.
by ray.wurlod
Wed Feb 28, 2007 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterpise Stage Warnings
Replies: 8
Views: 2042

Useful knowledge. Thank you.