Search found 53125 matches

by ray.wurlod
Sun May 14, 2006 3:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine static call
Replies: 7
Views: 1395

It IS static. DEFFUN only exists to notify the compiler that the name followed by a left parenthesis is that of a function (rather than that of a dimensioned array), to confirm the number of arguments in the call, and to advise the name under which the routine is catalogued; user-written routines ha...
by ray.wurlod
Sat May 13, 2006 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup table field as stage variable value in Tx stage
Replies: 2
Views: 952

Stage variables are evaluated after all inputs have been fetched, so all columns from all inputs are available in stage variables. However, if the lookup fails, the value returned in all columns on the reference input link is NULL. Does your stage variable derivation expression take into account the...
by ray.wurlod
Sat May 13, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to create a new job and open an existing job
Replies: 14
Views: 5353

Is this a parallel job or a server job?
by ray.wurlod
Fri May 12, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looping Batch Job fails for No reason
Replies: 3
Views: 1468

Welcome aboard. :D There isn't really enough information to enable us to help. If you were to post the batch code - surrounded by Code tags - then we could inspect that. Also post the English text of what the looping batch is supposed to do, so we can check the code against that. This text should ex...
by ray.wurlod
Fri May 12, 2006 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Search "Metadata"
Replies: 6
Views: 1291

Chuck Smith posted a (link to) a utility for this kind of search. You should be able to find it by searching the forum. It's also possible with Kim Duke's tool kit. Why do you want to re-invent the wheel?
by ray.wurlod
Fri May 12, 2006 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find End of Records
Replies: 8
Views: 2576

You don't need to know this. DataStage will be issuing the equivalent of SQLFetch() functions to the database to retrieve rows from the query result set. When this function returns an appropriate value, indicating "no more data", DataStage "knows" that it can exit from its main loop. There is no use...
by ray.wurlod
Fri May 12, 2006 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Stored Procedure
Replies: 7
Views: 1862

Does your DataStage job connect to Oracle using the same login/password that you used in TOAD?
by ray.wurlod
Fri May 12, 2006 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular expressions in Datastage Tranformer
Replies: 8
Views: 4566

You'll have to stop drinking that English beer! :lol:
by ray.wurlod
Fri May 12, 2006 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: doing lkup in 7.1
Replies: 3
Views: 1058

The Lookup stage performs only equi-joins. You are probably better off performing the join in the database prior to receiving the result rows into DataStage. Of course, I am assuming that your other source data are also in Teradata; if they're not, you could readily load them into a temporary table ...
by ray.wurlod
Fri May 12, 2006 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Generate Report" option error
Replies: 1
Views: 1062

Do you design your jobs by Load of column definitions from previously imported Table Definition, or by just putting column definitions into job designs by hand? If the latter, there is no linkage back to a table definition in the Repository.
by ray.wurlod
Fri May 12, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error with IDOC load stage
Replies: 2
Views: 1222

Great. But how did you (or "they") discover that there was a communication problem? What other symptoms or error messages occurred, either in DataStage or in the SAP environment? This kind of knowledge posted here is what makes this a useful site for others searching for help on IDOC stage problems ...
by ray.wurlod
Fri May 12, 2006 3:06 pm
Forum: DSXchange Testimonials
Topic: hi..this is really great learning curve for all
Replies: 3
Views: 13506

Yes, but if I may re-offer a piece of advice: this site is not SMS-capable. Please write in English, as if you were producing documentation. It makes life easier for those who are not quite comfortable with English not to have to figure out what SMS-style shortcuts mean.
by ray.wurlod
Fri May 12, 2006 5:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am not able to accessing the sequence jobs
Replies: 3
Views: 1374

Welcome aboard. :D
What exact version of DataStage are you using? Is it on Windows XP sp2? You probably need a patch from the vendor.
by ray.wurlod
Fri May 12, 2006 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular expressions in Datastage Tranformer
Replies: 8
Views: 4566

The Fold() function will separate the string into four-character pieces separate by @FM characters, a Convert() function will do the rest.

Code: Select all

Convert(@FM, ",", Fold(InLink.TheColumn, 4))
by ray.wurlod
Fri May 12, 2006 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

Once you've established a Select List (a list of key values in memory) you process it with ReadNext statements until the list is exhausted. It's a good idea to use a non-default Select List number, in case the default Select List is being used by something else. Perform "SELECT JOBNO DS_JOBS WI...