Search found 53125 matches

by ray.wurlod
Mon Jun 02, 2008 1:04 am
Forum: General
Topic: junk character - how to identify
Replies: 12
Views: 3371

You can use Oconv(InLink.TheString, "MX0C") to convert all characters to hex-encoded equivalents.
by ray.wurlod
Mon Jun 02, 2008 1:03 am
Forum: General
Topic: Best/easiest way to capture reject records in datastage
Replies: 17
Views: 19317

Many parallel stage types support a reject link. The descriptions of each in the manuals will tell you which they are.
by ray.wurlod
Mon Jun 02, 2008 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to insert missed @ or .(dot) in an email address
Replies: 3
Views: 1288

QualityStage match against list of valid domains. Survive matches from the valid list.
by ray.wurlod
Mon Jun 02, 2008 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cannot open executable job file RT_CONFIG0
Replies: 22
Views: 5338

No. At least nowhere that I've looked.

(Well, that's not entirely true - they are documented in my DataStage Administration class - though not, curiously, in IBM's Administering DataStage class.)
by ray.wurlod
Mon Jun 02, 2008 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Correct email address by using soundex/phonetics approach
Replies: 3
Views: 1478

QualityStage would be my preferred approach.

Both Soundex and NYSIIS capability are built in to QualityStage. You could (as one suggestion only) match against a list of valid domains.
by ray.wurlod
Mon Jun 02, 2008 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine within a Transformer
Replies: 2
Views: 1136

Congratulations on finding a solution (even if we don't know what the cause of the problem was)! Please mark this thread as Resolved.
by ray.wurlod
Mon Jun 02, 2008 12:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic handling metadata
Replies: 13
Views: 3447

Welcome aboard. :D

There is no way to achieve this in a server job.
by ray.wurlod
Mon Jun 02, 2008 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting a nullable source to a non-nullable result
Replies: 17
Views: 6320

Don't believe so. I understand that metadata capture unconditionally assumes that any function (including NVL) may return a nullable result.
by ray.wurlod
Sun Jun 01, 2008 8:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning
Replies: 5
Views: 1631

The only partitioning algorithms that could cause a self-deadlock (assuming you're not updating the same table as the one from which you are reading) are Entire or a key-based algorithm (Hash or Modulus) where the partitioning key differs from the table primary key. Every other partitioning algorith...
by ray.wurlod
Sun Jun 01, 2008 8:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting Pipe delimited file
Replies: 7
Views: 2997

Even so, "expression = @NULL" is invalid.
by ray.wurlod
Sun Jun 01, 2008 7:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting Pipe delimited file
Replies: 7
Views: 2997

expression = @NULL is not a valid thing to do. You are attempting to compare the result of expression against an unknown value. The result can only be NULL (unknown), which causes a constraint expression to return "false". What you need instead is IsNull(expression), which returns "true" if the res...
by ray.wurlod
Sun Jun 01, 2008 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading file validations and log file
Replies: 5
Views: 2173

Not quite. @INROWNUM is the number of rows into the Transformer stage, not the number of rows sent into the target. @OUTROWNUM is the number of rows sent to the target, each of these may or may not be successful. You need reject handling in the job to be confident about how many of the rows were suc...
by ray.wurlod
Sun Jun 01, 2008 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Stage
Replies: 5
Views: 2133

Please post a message indicating how it has been solved and mark the thread as Resolved.
This will assist future searchers.
by ray.wurlod
Sun Jun 01, 2008 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning
Replies: 5
Views: 1631

(Auto) is the same as "Same" when the link is between two parallel stages (neither of which is a reference link). Partitioning guarantees that each row is processed on only one node. Mutually exclusive constraints guarantee that each input row (on any particular node) is directed to only one output ...
by ray.wurlod
Sun Jun 01, 2008 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading file validations and log file
Replies: 5
Views: 2173

The row number that you are reading from the file is reported in the Transformer stage via the @INROWNUM system variable. The number of rows that were sent to the target (whether successfully or not) is reported in the @OUTROWNUM system variable on each output link from the Transformer stage. You ca...