Search found 42189 matches

by chulett
Fri Feb 22, 2008 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cleanup resources option in director
Replies: 3
Views: 1103

Huh. No, there isn't. So, it shows no PIDs even if you switch either side to 'Show All? :? Is there anything different about this environment?
by chulett
Fri Feb 22, 2008 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Hash file
Replies: 12
Views: 3003

Are you sure this is good advice? Up the MAXKEY value to 20000 ? :?

Usually I would have expected to see dire warnings about the consequences / side effects of this, or questions on why someone would really need a hashed key that large. [shrug] Whatever.
by chulett
Fri Feb 22, 2008 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $ReturnValue behaviour in sequencer
Replies: 2
Views: 1611

ps. It would be simpler if you learned about and starting using the 'user status' area in jobs. No intermediate file needed, no funky trigger handling, just a job that stashes something there and then $UserStatus can be used directly. Search the forums for either "user status" or "USERSTATUS" as thi...
by chulett
Fri Feb 22, 2008 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $ReturnValue behaviour in sequencer
Replies: 2
Views: 1611

Your job flow ascii art is hard to grok. Short answer - try this in your trigger: Head.$ReturnValue<1> < 34 -or- Convert(@FM,'',Head.$ReturnValue) < 34 As for your message, it means exactly what it says. Flow went into the Sequencer but nothing ever came out the other side. This typically oc...
by chulett
Fri Feb 22, 2008 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting NULL records even after defining constraint
Replies: 19
Views: 3984

ArndW wrote:Please remember that an empty string, "", is not null.
by chulett
Thu Feb 21, 2008 3:53 pm
Forum: General
Topic: Access same hash file as look up from two different jobs
Replies: 5
Views: 1541

Nothing. Just use them.
by chulett
Thu Feb 21, 2008 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL tool migration
Replies: 5
Views: 1801

We know, Ernie. Just still noting that it requires IBM to bring that particular gun to bear on your target, it's not something you can just request and get your hands on. :wink:
by chulett
Thu Feb 21, 2008 2:46 pm
Forum: General
Topic: Access same hash file as look up from two different jobs
Replies: 5
Views: 1541

There's nothing required to make this work if both are just doing lookups. You've got a problem with the job itself that got back 0 rows.
by chulett
Thu Feb 21, 2008 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String compare
Replies: 4
Views: 2317

Or there's always what Ken posted. Don't know why, but I always forget about 'compare' for some reason. D'oh! :wink:
by chulett
Thu Feb 21, 2008 11:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String compare
Replies: 4
Views: 2317

Haven't seen that problem before, but if that's really the problem you can try one of the 'string' functions noted in the BASIC manual pdf. Specifically, the SCMP function: Use the SCMP function to compare two string numbers and return one of the following three numbers: -1 (less than), 0 &#...
by chulett
Thu Feb 21, 2008 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Joining the Hash file
Replies: 14
Views: 4712

Again - do you really need to load the entire record into the work table for this join? If yes then carry on, just wanted to make sure. As to your problem, I'm not understanding your issue so can't give much advice - other than to ask you to try to explain it again. Perhaps you could post the table ...
by chulett
Thu Feb 21, 2008 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Joining the Hash file
Replies: 14
Views: 4712

:shock: Oh Gawd, not a LONG. Use a CLOB instead, unless your version of Oracle is so old it doesn't support them?
by chulett
Thu Feb 21, 2008 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scheduled sequencers are not running
Replies: 6
Views: 2207

Yes, you do. And then have someone severely thrashed. :evil:
by chulett
Thu Feb 21, 2008 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for file routine - handling incomplete files?
Replies: 9
Views: 2372

Whomever was transferring the file would need to do that, post transfer. You can't, unless you first check to ensure the file is completely transferred, and if you do that we're back where we started. :wink:
by chulett
Thu Feb 21, 2008 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Avoid Cartesian Products
Replies: 7
Views: 1552

You "avoid the cartesian product" by joining on the proper keys. Why in the world can you not simply do that here? If you "can't do that" for some reason, I really don't see how you can avoid the cartesian-then-filter approach. However, you could arrange for all of that to happen in the source sql, ...