Search found 53125 matches
- Fri Mar 30, 2007 5:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SPT oracle or ODBC?
- Replies: 9
- Views: 2892
Almost certainly. The DataStage server is the client for the database. It is the DataStage server that must establish the ODBC connection, and therefore you must set up your DSNs on the server. This involves two files on UNIX machines: .odbc.ini in the DataStage engine directory (usually DSEngine), ...
- Fri Mar 30, 2007 5:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time Out waiting for Mutex Error
- Replies: 9
- Views: 5561
- Fri Mar 30, 2007 5:46 am
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: Idoc to Flatfile
- Replies: 4
- Views: 3082
- Thu Mar 29, 2007 9:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Failed to open project Status code = 81016
- Replies: 1
- Views: 4970
81016 decodes as "The (TCP) connection was refused or the dsrpcd daemon is not running". Check the server to see whether the dsrpcd daemon is, in fact running. If it is, check that your firewall is open to port number 31538, which is the port number on which dsrpcd listens (unless you've changed it).
- Thu Mar 29, 2007 4:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: bapi load
- Replies: 4
- Views: 2066
You design so that there is a link running into the BAPI stage. When you open the BAPI stage, there will be an Inputs tab on which you can enter the properties relevant to this link.
Code: Select all
(other stages ) -------> BAPI- Thu Mar 29, 2007 4:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Connect to MS Access
- Replies: 4
- Views: 1620
- Thu Mar 29, 2007 4:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Output Link Variable - OTHERWISE for Reject
- Replies: 9
- Views: 4935
Database rejects will NOT go down the reject link of a Transformer stage. The rejects link (which is NOT the same thing as the Otherwise/Log link) handles input rows that cause an exception in the stage, for example an attempt to divide by zero or to take the square root of a negative number. Databa...
- Thu Mar 29, 2007 4:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem viewing a seq file on Datastage
- Replies: 15
- Views: 8704
Import error at record 0 is almost always an incorrect setting of "First Line Is Column Names" property. This is not supported for fixed width format files in DataStage. However, if your file does have column headings on the first line, then it's unlikely that this row will match the record schema, ...
- Thu Mar 29, 2007 3:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: performance statistics
- Replies: 9
- Views: 4649
- Thu Mar 29, 2007 3:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequence - Trigger - OK/Warning
- Replies: 12
- Views: 11940
- Thu Mar 29, 2007 3:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX with Sequential File
- Replies: 9
- Views: 2496
What's happening in between reading and writing? Parallel processing may assist if some heavy duty transformation is occurring. You can allocate multiple readers to the file - particularly effective if the file has fixed width records - and achieve parallelism in reading. Unfortunately the operating...
- Thu Mar 29, 2007 3:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading an excel file in ODBC Stage
- Replies: 2
- Views: 1304
- Thu Mar 29, 2007 3:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to call teradata storeprocedure in datastage-px
- Replies: 3
- Views: 3015
- Thu Mar 29, 2007 3:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How Datasets are stored?
- Replies: 12
- Views: 3749
Each row in a Data Set (or File Set) carries an additional four columns of management information totalling 80 bits; the partition number, the partition count, the ordinal number of the record within the partition and the record ID. The data in a Data Set are stored in one or more files on each node...
- Thu Mar 29, 2007 3:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Add Months to a Date
- Replies: 9
- Views: 6440
The Oconv() and Iconv() functions used in that routine might make life tricky, however.
You could, I guess, use the ICI functions ic_iconv() and ic_oconv(). You will find these documented in the Intercall Reference Guide on the IBM UniVerse web site.
You could, I guess, use the ICI functions ic_iconv() and ic_oconv(). You will find these documented in the Intercall Reference Guide on the IBM UniVerse web site.