Search found 15603 matches
- Thu Jan 21, 2010 8:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: page can't be displayed when try open administrator console
- Replies: 9
- Views: 3751
- Thu Jan 21, 2010 7:57 am
- Forum: General
- Topic: Reg : Usage analysis
- Replies: 2
- Views: 1117
- Thu Jan 21, 2010 7:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can I restart the server after particular job finished?
- Replies: 32
- Views: 37342
UVTEMP is where temporary files are placed. Where it is located on the system is not as important as making sure that there is sufficient temporary space available at that location. It is not a good idea to have it on the same partition as the DataStage server, since the DataStage engine is very sen...
- Thu Jan 21, 2010 7:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Join stage error
- Replies: 2
- Views: 2258
- Thu Jan 21, 2010 7:42 am
- Forum: General
- Topic: Could please tell me something about pantam error
- Replies: 3
- Views: 1102
- Thu Jan 21, 2010 4:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: page can't be displayed when try open administrator console
- Replies: 9
- Views: 3751
- Thu Jan 21, 2010 4:11 am
- Forum: General
- Topic: JOB CONTROL
- Replies: 3
- Views: 1251
- Thu Jan 21, 2010 4:04 am
- Forum: General
- Topic: How we can manage the &ph& folder in UNIX system
- Replies: 7
- Views: 2196
- Wed Jan 20, 2010 11:12 am
- Forum: IBM QualityStage
- Topic: Use of the Filescan utility on Unix
- Replies: 4
- Views: 1595
- Wed Jan 20, 2010 10:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: wait job
- Replies: 10
- Views: 2204
- Wed Jan 20, 2010 10:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to see the any thing in the DataStage Log
- Replies: 6
- Views: 2001
- Wed Jan 20, 2010 6:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: wait job
- Replies: 10
- Views: 2204
:oops: I had forgotten to check that routine. I think it will only work if the job from which it is called is also the one which started the job in the first place, but that is worth checking into, since the resultant code would be a short: JobHandle = DSAttachJob('YourJob',DSJ.ERRNONE) Dummy = DSWa...
- Wed Jan 20, 2010 6:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DS-PX Day from Date
- Replies: 4
- Views: 1359
- Wed Jan 20, 2010 6:21 am
- Forum: General
- Topic: CORBA Marshall access issue
- Replies: 2
- Views: 1981
- Wed Jan 20, 2010 6:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: wait job
- Replies: 10
- Views: 2204
The best way is not to call the job from a sequence until the precursors have completed. If that is not possible, then you can do as follows: Even in PX jobs the job control code is in BASIC. Thus, you could add code JobHandle = DSAttachJob('YourJob',DSJ.ERRNONE) Finished = 0 LOOP UNTIL Finished Job...