Search found 42189 matches

by chulett
Tue Jun 17, 2008 12:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add environment variables?
Replies: 7
Views: 1973

No worries, that probably wasn't the best choice of words. Debating, discussing... whatever, just get on in there and give it a whirl. :wink:
by chulett
Tue Jun 17, 2008 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join to Hash File
Replies: 9
Views: 2680

Re: Join to Hash File

nivas wrote:I need to join to a hash file like follows.

You can't. A hashed join is an equi-join, period. Search the forums for 'range lookup' (or perhaps 'ranged lookup') to find various conversations on this topic and what your alternatives are.
by chulett
Tue Jun 17, 2008 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Lock
Replies: 7
Views: 1530

Actually, you are truncating the table over and over again, and all that you see there in the end is the last record loaded.
by chulett
Tue Jun 17, 2008 11:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looukp reading 1 row at a time
Replies: 12
Views: 5411

Re: Looukp reading 1 row at a time

The problem is when the retrieve the nextval this is the same value por a group of records, 5 records or 10 records, is different from each execution Not really sure what this means. If you mean your first call to 'nextval' gets you 5 (for example) and the second is 105 rather than 6, that's a func...
by chulett
Tue Jun 17, 2008 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add environment variables?
Replies: 7
Views: 1973

Actually, they are 'user defined'. And you, the user, need to define them in your environment. Rather than argue, suggest you just give it a try.
by chulett
Tue Jun 17, 2008 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use XSD and WSDL in webservices transformer stage
Replies: 13
Views: 11051

You import them via the Manager and then load that resulting metadata in the WS Transformer stage.
by chulett
Tue Jun 17, 2008 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Code in derivation VS routine call
Replies: 3
Views: 1079

No, that's true with a Transform but not a Routine. The overhead of the call is negligible but I wouldn't necessarily use one unless it was essential or you wanted a reusable/shared object.
by chulett
Tue Jun 17, 2008 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handling a (sort of) fixed length file
Replies: 5
Views: 1223

So... you've got records with no field delimiters but not all fields are fully populated? Who comes up with crap formats like this? I don't see how you would do something like this outside of a C or C++ program. Or, I guess, a BASIC routine that does the same, but I imagine that would be... slower. ...
by chulett
Tue Jun 17, 2008 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add environment variables?
Replies: 7
Views: 1973

Just... type them in as User Defined variables.
by chulett
Tue Jun 17, 2008 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with DSJOB command
Replies: 8
Views: 2775

swathi Singamareddygari wrote:
ray.wurlod wrote:There is no job parameter named ACT_L00_TRG in the job called jobname. ...

i am using that parameter in the job

No, you're not or it would be working. And no, you don't need a dollar sign, just the right parameter name.
by chulett
Tue Jun 17, 2008 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commiting rows in Oracle after insert
Replies: 5
Views: 1401

The job needs to Abort to automatically perform a rollback to the last commit point. For an 'all or nothing' load you'd need to be able to specify that there be no intermediate commits but only the single one at the end. Others will have to answer if/how you can arrange that in PX. Set the intervals...
by chulett
Tue Jun 17, 2008 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to generate alphanumeric sequence
Replies: 2
Views: 1798

Define what you mean and include an excellent example so we don't go chasing the wild gooses.
by chulett
Tue Jun 17, 2008 6:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Treat same files
Replies: 8
Views: 3008

The Filter has problems with wildcards sometimes. Plus you don't do redirection there, but rather the stage reads std out of the filter command. If you want to stick with your command as written, simply put it as a 'before job' ExecSH command and then use the resulting file in the Sequential File st...
by chulett
Tue Jun 17, 2008 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Direct lookup
Replies: 1
Views: 720

WHERE PLT_FROM<=:1 AND PLT_TO>=:2 Means you have two Key fields. The lookup is done where PLT_FROM is less than or equal to the first Key value and PLT_TO is greater than or equal to the second Key value. If you want to stick with the OCI lookup, ensure that query is as well tuned as possible. Or, ...
by chulett
Tue Jun 17, 2008 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with DSJOB command
Replies: 8
Views: 2775

That simply means you don't have a parameter named "ACT_L00_TRG" in that job. Check the spelling, including the case.