Search found 53125 matches
- 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...
- 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...
- 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
- 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...
- Fri May 12, 2006 3:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Search "Metadata"
- Replies: 6
- Views: 1291
- 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...
- Fri May 12, 2006 3:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling Stored Procedure
- Replies: 7
- Views: 1862
- 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
- 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 ...
- 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
- 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 ...
- Fri May 12, 2006 3:06 pm
- Forum: DSXchange Testimonials
- Topic: hi..this is really great learning curve for all
- Replies: 3
- Views: 13506
- 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
- 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))- 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