Search found 53125 matches

by ray.wurlod
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

It's actually an excellent idea, because one process "warms the cache" for the others. :D
by ray.wurlod
Wed Oct 12, 2005 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and reporting
Replies: 6
Views: 1096

The Reporting Assistant has been deprecated in favour of MetaStage.

The Reporting Assistant can not report on job sequences or on parallel jobs.
by ray.wurlod
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

Code: Select all

MAT myArray = 0
Otherwise you have discovered the correct answer. Well done.
by ray.wurlod
Wed Oct 12, 2005 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Error
Replies: 1
Views: 923

But does it get a null sent to it because you're using default Format, and there's a "" in the source file?
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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

... and a DSDetachJob to indicate that you're finished with it and another process doesn't get a "locked" message.
by ray.wurlod
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

Would you care to share the actual expressions you used, to save someone else this research task when they search the Forum?
by ray.wurlod
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

The "date picture" string is taken literally. Same as it is in Oracle. The moral is that you make sure that your date strings exactly match the date picture.
by ray.wurlod
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

The Lookup stage supports one or more reference inputs. More than one of these can read from the same source (virtual Data Set). The only exception is a sparse lookup, in which case the Lookup stage can have only one reference input link. However, you can have more than one Lookup stage in a job.
by ray.wurlod
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

Strictly speaking, it doesn't. At version 6, when IBM bought UniVerse (and a heap of other database products) from Informix, Ascential had to change the name of the database to "DataStage Engine". However, the storage mechanism in the Repository is unchanged through to version 7.5.
by ray.wurlod
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...
by ray.wurlod
Wed Oct 12, 2005 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure Stage help
Replies: 2
Views: 920

Is this really a DataStage TX question?
by ray.wurlod
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

That may not be enough. If there are data in the hashed file, you will have an empty index. Command="CREATE.INDEX " : vHashFile : " " : vIndexCol Call DSExecute('UV', Command, Output, SystemReturnCode) Command="BUILD.INDEX " : vHashFile : " " : vIndexC...
by ray.wurlod
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...