Search found 53125 matches
- Fri Oct 21, 2005 5:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How do I configure for multiple network interfaces on SMP?
- Replies: 27
- Views: 9063
Welcome aboard. :D I'm not sure what you mean by "network interfaces" in this context. SMP to me implies one machine with multiple CPUs. If you want to extend processing to multiple machines, then you're effectively talking MPP. Read the chapter on configuration files in the Manager manual. In it yo...
- Fri Oct 21, 2005 5:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue in Reading Binary data in Datastage
- Replies: 2
- Views: 1286
- Fri Oct 21, 2005 5:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Reject Link Error
- Replies: 9
- Views: 4061
- Fri Oct 21, 2005 3:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage scheduling issues
- Replies: 6
- Views: 1362
- Fri Oct 21, 2005 3:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Missing record delimiter "\n", saw EOF instead
- Replies: 22
- Views: 38013
- Fri Oct 21, 2005 2:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage scheduling issues
- Replies: 6
- Views: 1362
- Fri Oct 21, 2005 2:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 9i Stage issues
- Replies: 6
- Views: 1518
The SQL you posted won't update anything. Try the oerr command (oerr ORA 12535) to get recommendations for this particular error. I suspect it's something to do with locks on the table; you may still have a lock from the earlier cursor not released when you come to do the update. If you do the updat...
- Fri Oct 21, 2005 2:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding the CLOB datatype of Oracle
- Replies: 5
- Views: 1224
That message has nothing whatsoever to do with the fact that you're casting a CLOB as a VarChar. Read the error message again. The Oracle server is busy at the time. Something preceding hasn't finished when the next call is made through the OCI. Have your Oracle DBA help you to trace what requests a...
- Fri Oct 21, 2005 1:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Library file not Found
- Replies: 10
- Views: 3470
- Fri Oct 21, 2005 1:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSD.SEQOpen Failed to open <file> in <dir>
- Replies: 12
- Views: 9088
- Fri Oct 21, 2005 1:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Missing record delimiter "\n", saw EOF instead
- Replies: 22
- Views: 38013
- Thu Oct 20, 2005 5:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing Stored prcedure using OBDC stage
- Replies: 15
- Views: 6484
ANY stored procedure invoked from DataStage must work with a record set. You can find this in the documentation. Any other kind of stored procedure will return that - or a similar - message, often when you're importing the SP definition. And you must import the SP definition before attempting to use...
- Thu Oct 20, 2005 5:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 10 pounds in a 5 pound bag
- Replies: 28
- Views: 5576
- Thu Oct 20, 2005 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How do I specify TAB delimited files
- Replies: 7
- Views: 3401
- Thu Oct 20, 2005 5:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer Problem
- Replies: 11
- Views: 5798
Recommendation Don't hard code 0, 1 and 2, etc. Use DataStage constants from the expression editor drop-down list. That way, if "they" ever change the return values, you're covered. stage_label.$JobStatus = DSJS.RUNOK Or stage_label.$JobStatus = DSJS.RUNWARN Or stage_label.$JobStatus = DSJS.RESET I...