Search found 53125 matches

by ray.wurlod
Mon Aug 06, 2012 9:31 pm
Forum: General
Topic: Need New Zealand IBM software support number to raise a PMR
Replies: 13
Views: 3996

Even more amazing, there's a list of worldwide telephone numbers to be found on the support portal. So if you really, really, really need to use the telephone (registration is still required), you could find the number here for New Zealand. Isn't technology wonderful? You'll still probably end up ta...
by ray.wurlod
Mon Aug 06, 2012 9:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get this logic
Replies: 4
Views: 1467

Do you mean some posters don't have the Search menu option?
:shock:
by ray.wurlod
Mon Aug 06, 2012 8:11 pm
Forum: General
Topic: Project move to another server
Replies: 3
Views: 1047

And, in short, you didn't understand what you were doing. This is not the correct procedure for moving to a new server. By copying all file system objects, you are preserving all entries that refer to the old server (as you discovered). The correct procedure is to export all projects, install and co...
by ray.wurlod
Mon Aug 06, 2012 6:45 pm
Forum: IBM QualityStage
Topic: COUNTRY rule set is identifing the Country code
Replies: 10
Views: 4186

Also try moving the literal ahead of the input column.
by ray.wurlod
Mon Aug 06, 2012 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get this logic
Replies: 4
Views: 1467

I'm certain this question has been asked and answered in the relatively recent past.

It is starting to feel like an interview question.
by ray.wurlod
Mon Aug 06, 2012 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records in sequential order...
Replies: 11
Views: 4355

FranklinE wrote:Andrew, pie is easy. Π is an irrational number and never easy. :wink:
... unless you live in Indiana, where the state legislature in 1897 considered a law decreeingthe value of pi to be 3, or 3.2, or 4, to make it easier for school children to learn.
by ray.wurlod
Mon Aug 06, 2012 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace quote character " " with ~#
Replies: 4
Views: 2237

Convert() replaces characters on a one-for-one basis. You will need the pxEreplace() function, which does not come with DataStage but source code for which you can find on DSXchange.
by ray.wurlod
Mon Aug 06, 2012 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trillium and Datastage Connectivity Issue
Replies: 6
Views: 1933

Welcome aboard.

As far as I'm aware there's nothing out of the box, but you could create a custom stage using the Trillium API.
by ray.wurlod
Mon Aug 06, 2012 2:29 pm
Forum: General
Topic: IOD 2012
Replies: 15
Views: 6129

One of the topics is "A Detailed Look at IBM InfoSphere DataStage 9.1". Tuesday at 16:30, South Pacific I.

So maybe there won't be a version 8.9.
by ray.wurlod
Mon Aug 06, 2012 2:27 pm
Forum: General
Topic: Need New Zealand IBM software support number to raise a PMR
Replies: 13
Views: 3996

You can log PMRs through the support portal. You don't need to use the phone. (The person who answers the phone is probably in Bangalore anyway.)
by ray.wurlod
Mon Aug 06, 2012 2:25 pm
Forum: General
Topic: Big Data File Stage
Replies: 7
Views: 3987

ASAP

(That's how you wanted me to reply.)
by ray.wurlod
Mon Aug 06, 2012 2:25 pm
Forum:
Topic: Error while importing BO universe
Replies: 4
Views: 2691

You need to look in the logs for more information. It may be the WAS logs (SystemOut.log and SystemErr.log) or it may be the export log (probably in $TEMP).
by ray.wurlod
Mon Aug 06, 2012 2:23 pm
Forum: IBM QualityStage
Topic: COUNTRY rule set is identifing the Country code
Replies: 10
Views: 4186

The literal ZQUSZQ instructs the rule set to use country code US in cases where it cannot determine the country code. The default country code, if you like. In this case the flag is set to "N" to indicate that it's not established as a confident selection.
by ray.wurlod
Mon Aug 06, 2012 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find minimum value in a column using transformer?
Replies: 11
Views: 4336

That's not what the Min() function does. Check the documentation to find out what the Min() function does. The solution is most easily wrought using a pair of stage variables that you use to compare the value with its value in the previous row, and update only if it is smaller. It is not necessary t...
by ray.wurlod
Mon Aug 06, 2012 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records in sequential order...
Replies: 11
Views: 4355

Given the arbitrary number of integers in the range I'd rule out using stage variables, but would definitely rule IN loop variables in the Transformer stage.