Search found 53125 matches
- Wed Aug 10, 2005 11:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File Locking for Key Management
- Replies: 19
- Views: 4166
- Wed Aug 10, 2005 11:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Rounding of Numeric Data
- Replies: 2
- Views: 1598
- Wed Aug 10, 2005 10:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: determining job parameters at runtime
- Replies: 7
- Views: 2236
Please note that BASIC-based techniques can not be use in a parallel job in an MPP (cluster) environment - only in an SMP (share everything) environment. That said, however, you can use job sequences (which are BASIC-based) in either environment; however, these can operate only on the conductor node...
- Wed Aug 10, 2005 10:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage returns fake return code
- Replies: 18
- Views: 6528
- Wed Aug 10, 2005 7:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check constraint (SYS_C00380582)
- Replies: 12
- Views: 2732
- Wed Aug 10, 2005 7:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage returns fake return code
- Replies: 18
- Views: 6528
Code: Select all
JobStatus = DSGetJobInfo(DSJ.ME, DSJ.JOBINTERIMSTATUS)- Wed Aug 10, 2005 7:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSGetJobInfo for current job always return 0
- Replies: 1
- Views: 1138
Where are you executing this code? If - as seems to be the case - you're executing it from within a routine - even an after-job routine - the status of the job will always - necessarily - be 0 ("running"). You can, in an after-job subroutine, use the "interim status" argument to DSGetJobInfo. Resear...
- Wed Aug 10, 2005 6:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File Locking for Key Management
- Replies: 19
- Views: 4166
- Wed Aug 10, 2005 6:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check constraint (SYS_C00380582)
- Replies: 12
- Views: 2732
Not in all databases. UniVerse, for example, differentiates NOT NULL, NOT EMPTY, UNIQUE, ROWUNIQUE (for multi-valued data), CHECK and FOREIGN KEY constraints. Technically (SQL standards) a CHECK constraint is one where an SQL expression is satisfied by the row. I guess "column IS NOT NULL" could be ...
- Wed Aug 10, 2005 6:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup Stage
- Replies: 4
- Views: 1507
- Wed Aug 10, 2005 3:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Note: Sequencer 'Sequencer_8' was entered, but never exited
- Replies: 8
- Views: 12190
- Wed Aug 10, 2005 3:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reset Job if necessary
- Replies: 3
- Views: 1082
- Wed Aug 10, 2005 3:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Info type message
- Replies: 2
- Views: 1096
- Wed Aug 10, 2005 3:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check constraint (SYS_C00380582)
- Replies: 12
- Views: 2732
- Wed Aug 10, 2005 3:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File Locking for Key Management
- Replies: 19
- Views: 4166
FILELOCK supports an optional LOCKED clause to handle the situation that a file lock can not be obtained. If there is no LOCKED clause, the application waits indefinitely until the block is released. Research the FILELOCK statement in the DataStage BASIC manual. But, as Kim said, you don't need to l...