Search found 53125 matches

by ray.wurlod
Wed Nov 08, 2006 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quick string extraction question
Replies: 9
Views: 1756

Code: Select all

If Inlink.TheString Matches "5N0X5N0X" Then MatchField(InLink.TheString,"5N0X5N0X",3) Else MatchField(InLink.TheString,"0X5N0X",2)

This will still fail if the house number is ten or more digits, but I've never encountered any of those!
by ray.wurlod
Wed Nov 08, 2006 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Interesting Sample stage problem
Replies: 9
Views: 2053

Are the sampling characteristics set identically?
by ray.wurlod
Wed Nov 08, 2006 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Command stage
Replies: 5
Views: 1624

I don't believe there is. No mention of one comes up in Help, though no mention of the server one comes up in Help either.

Depending on what you want to accomplish either an External Filter stage or a Wrapper stage may achieve your ends.
by ray.wurlod
Wed Nov 08, 2006 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with PX job
Replies: 12
Views: 4200

For sparse lookups there are several restrictions. Among them are that only DB2 Enterprise and Oracle Enterprise stages may be used, and that these must be connected directly to the Lookup stage (no intervening stages on the reference input links). Are all those conditions met?
by ray.wurlod
Wed Nov 08, 2006 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage - System Date to Timestamp conversion??
Replies: 7
Views: 4729

At a quick glance that looks OK, provided that there is a field called tdatetime in the input stream. Are the fields on both sides nullable?

How and where is tdatetime derived?
by ray.wurlod
Wed Nov 08, 2006 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Interesting Sample stage problem
Replies: 9
Views: 2053

Are any rejects being reported in the job log of Job 2?
Do you have reject links to handle these?
by ray.wurlod
Wed Nov 08, 2006 1:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Documentation for Datastage provided routines
Replies: 4
Views: 2018

I don't believe there are any DataStage-provided parallel routines.
by ray.wurlod
Wed Nov 08, 2006 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset read problem
Replies: 13
Views: 4635

What are your parallel job tuning credentials? That is, why did they give you the task? How much experience do you have in this area?
by ray.wurlod
Wed Nov 08, 2006 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quick string extraction question
Replies: 9
Views: 1756

MatchField(InLink.TheString, "0X5N0X", 2) "0X" matches any number of characters, "5N" matches five numeric characters. The function returns that part of the string that matches the second component of the match pattern (that is, the first "5N" in the string). It returns "" if ther...
by ray.wurlod
Wed Nov 08, 2006 11:10 am
Forum: General
Topic: Not able to run the executable job in different environment.
Replies: 12
Views: 6447

Etiquette Note
This is an all volunteer site. The only place from which you can expect help is a support provider to whom you pay maintenance fees.
by ray.wurlod
Wed Nov 08, 2006 11:08 am
Forum:
Topic: Taking metadata from a file
Replies: 18
Views: 5990

It expects the format of an Orchestrate record schema.
by ray.wurlod
Wed Nov 08, 2006 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage engine
Replies: 6
Views: 4001

Re: DataStage engine

tagnihotri wrote:what is brain and whats the purpose!


This is actually one of the all-time favourite philosophical questions! Part of the bigger question of the mind/brain duality question.
by ray.wurlod
Wed Nov 08, 2006 9:01 am
Forum: General
Topic: How to implement multiple joins in DataStage?
Replies: 8
Views: 5460

Rats! :lol:
by ray.wurlod
Wed Nov 08, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update and Insert using user defined sql in ODBC stage
Replies: 8
Views: 2116

One stage, two links. HashedFile : : inserts V ---------> --> Transformer ODBC ---------> updates Hashed File contains keys from target table, lookup determines existence of key in target table, which makes insert/update decision.