Search found 53125 matches
- Wed Oct 12, 2005 3:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concurrent reads from sequential file
- Replies: 4
- Views: 1058
- Wed Oct 12, 2005 3:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage and reporting
- Replies: 6
- Views: 1096
- Wed Oct 12, 2005 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dimensioned Array Assignment
- Replies: 2
- Views: 879
The only alternative is MAT, but this must assign the same value to every element, for example Otherwise you have discovered the correct answer. Well done.
Code: Select all
MAT myArray = 0- Wed Oct 12, 2005 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP Error
- Replies: 1
- Views: 923
- Wed Oct 12, 2005 3:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Code 256
- Replies: 5
- Views: 3537
Main sources of error codes are the hashed file SYS.MESSAGE (for the Engine) and the PDF manuals (for example for InterCall, the underlying architecture used by connected clients). I am fairly confident that there is no consolidated list of error codes generated by DataStage itself, as the OP reques...
- Wed Oct 12, 2005 3:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: unable to connect
- Replies: 4
- Views: 1122
If you're on Windows XP sp2, this error can also occur if the network card is inactive. Make sure that you're connected to a LAN of some kind. It's weird, the other machine in the network doesn't even have to be on, but the cable must be plugged in. It may even be enough to be plugged in to an activ...
- Wed Oct 12, 2005 2:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To Reset the DS Job if the status is Abort using Routine
- Replies: 4
- Views: 1282
- Wed Oct 12, 2005 2:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Julian date conversion to yyyy-mm-dd : hh-mm-ss
- Replies: 19
- Views: 9503
- Wed Oct 12, 2005 2:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Time conversion using StringToTime
- Replies: 3
- Views: 1118
- Wed Oct 12, 2005 2:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Re-Using Lookup stage
- Replies: 3
- Views: 1844
- Wed Oct 12, 2005 2:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: metadata store
- Replies: 7
- Views: 2151
- Wed Oct 12, 2005 2:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: get the job status on UNIX cmd-line ?
- Replies: 11
- Views: 4112
dsjob -jobstatus is documented as returning the job's status code. So you could use dsjob -run -jobstatus project jobname ; echo $? to get the exit status into a shell script. And, of course, the -jobinfo option returns a heap of stuff out of which you can parse the job status. I appreciate that the...
- Wed Oct 12, 2005 2:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stored Procedure Stage help
- Replies: 2
- Views: 920
- Wed Oct 12, 2005 3:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creating secondary index on hash file from a routine
- Replies: 3
- Views: 1184
- Wed Oct 12, 2005 3:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequence: Error calling DSRunJob(), code=-2
- Replies: 5
- Views: 6474
It's the job ScrubClm that's not in a runnable state, not the job sequence. This information is in the error message. The job ScrubClm may be aborted, or not compiled, or running, or stopped, or crashed. Any of these status values mean that the job is not in a runnable state. That's why job sequence...