Search found 53125 matches
- Tue Jul 11, 2006 2:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: phantom errors
- Replies: 2
- Views: 1265
The "list of errors and recommended actions" manual is promised for the next ("Hawk") release. It does not currently exist as a single document. Some error codes can be decoded via the SYS.MESSAGE table in DataStage. This has six digit (character) keys: SELECT * FROM SYS.MESSAGE WHERE @ID = '081011'...
- Tue Jul 11, 2006 1:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: BASIC Transform vs Transform
- Replies: 14
- Views: 5445
Not so much "overhead of BASIC" as "overhead of translation into and out of BASIC (typeless) environment from the C++ (strongly typed)envionment". It is likely that this overhead will cause perceived slowness in server jobs in Hawk, because the same transitions need to occur (everything operates in ...
- Tue Jul 11, 2006 11:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling exceptions
- Replies: 10
- Views: 2180
- Tue Jul 11, 2006 11:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequencing jobs through UNIX
- Replies: 8
- Views: 1485
- Tue Jul 11, 2006 9:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installation - Role Separation Issues
- Replies: 6
- Views: 3347
- Tue Jul 11, 2006 9:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer Issue
- Replies: 17
- Views: 3906
- Tue Jul 11, 2006 9:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashfile key allowing null values
- Replies: 5
- Views: 1317
- Tue Jul 11, 2006 9:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer Issue
- Replies: 17
- Views: 3906
- Tue Jul 11, 2006 7:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequencing jobs through UNIX
- Replies: 8
- Views: 1485
- Tue Jul 11, 2006 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OCI and Decimal type
- Replies: 16
- Views: 2634
- Tue Jul 11, 2006 6:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Query about dscmdexport
- Replies: 13
- Views: 5668
- Tue Jul 11, 2006 6:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: BASIC Transform vs Transform
- Replies: 14
- Views: 5445
- Tue Jul 11, 2006 6:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: custom trigger in Execute command stage
- Replies: 2
- Views: 768
Code: Select all
$ReturnValue Like "0X'0'0X" Or $ReturnValue Like "0X'1'0X"or
Code: Select all
Index($ReturnValue,0) > 0 Or Index($ReturnValue,1) > 0or just
Code: Select all
Index($ReturnValue,0) Or Index($ReturnValue,1)- Tue Jul 11, 2006 6:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: BASIC Transform vs Transform
- Replies: 14
- Views: 5445
- Tue Jul 11, 2006 6:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom error
- Replies: 11
- Views: 1981
If it can't open the hashed file, then the improper data type may have resulted from an attempt to use a file variable that relates to a file that is not - or is no longer - open. This can occur, for example, if the hashed file was opened successfully when the job began but was force closed or delet...