Search found 53125 matches

by ray.wurlod
Thu Aug 17, 2006 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when running Parallel Job
Replies: 7
Views: 3002

Read the error message carefully. There is some problem executing the fifo command in UNIX to create a named pipe. Track it down.
by ray.wurlod
Thu Aug 17, 2006 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record count from datasets
Replies: 7
Views: 3263

It's in the DX334 (DataStage Essentials) class from IBM also.
by ray.wurlod
Thu Aug 17, 2006 8:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting Char to date
Replies: 3
Views: 907

Job type is irrelevant here. 20000000 can not be a valid date. There is no month zero, no day zero, in the year 2000 (unless I missed something - I was up all night in case of Y2K problems occurring).
by ray.wurlod
Thu Aug 17, 2006 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenate/Convert date and time to timestamp
Replies: 5
Views: 3210

You will not be able to get it to work in one Modify stage for reasons already stated. The Modify stage does not support nested functions.
by ray.wurlod
Thu Aug 17, 2006 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: JobMonApp, dssh, semaphores permissions, password errors
Replies: 1
Views: 2961

ELF is an optionally installed Linux component. The message suggests that you need to install something that you haven't yet installed. You really shouldn't source dssh. You should source dsenv, but execute dssh directly. And you must be attached to a DataStage "account" in order to do so, not to th...
by ray.wurlod
Thu Aug 17, 2006 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregate - Out of Sequence - Underscore before A-Z
Replies: 7
Views: 2326

Says a lot for the "S" ("standard") in ASCII, doesn't it? :shock:
by ray.wurlod
Thu Aug 17, 2006 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsrpc process owner
Replies: 3
Views: 1299

It's usually started automatically by the init process (user id 1) when the UNIX system is booted. It does need to run with superuser privilege, so that it can authenticate logins. Check out its parent process ID in your ps -ef | grep dsrpcd | grep -v grep report.
by ray.wurlod
Thu Aug 17, 2006 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV
Replies: 8
Views: 1689

Can you leave the map set to NONE and process the hex data with

Code: Select all

Iconv(InLink.HexString, "MX0C") 
to see what you get?
by ray.wurlod
Thu Aug 17, 2006 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC lookup using Stored Procedure
Replies: 5
Views: 998

The message is telling you that you have not imported the Stored Procedure definition. DataStage requires that you import Stored Procedure definitions so that it can verify the number of arguments.
by ray.wurlod
Thu Aug 17, 2006 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting a Part from the given String
Replies: 24
Views: 18295

My choice would be MatchField(). "P/N " : MatchField(InLink.Description,"0X'P/N '0X' '0X",3) The MatchField() function here returns everything between "P/N " (with trailing space) and the next space character. It will return "" if "P/N " does not occur in the string, or i...
by ray.wurlod
Thu Aug 17, 2006 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control fatal error (-14) REVISITED
Replies: 4
Views: 2338

Even a validation run must start within 60 seconds.
by ray.wurlod
Thu Aug 17, 2006 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Variable Limitation
Replies: 6
Views: 1603

Make sure there is no space between any function name and its opening (left) parenthesis. DataStage BASIC can be finicky about this. There is no limit to the length of a string variable in DataStage BASIC until you run out of virtual memory. By assembling the entire log into a single string to be wr...
by ray.wurlod
Thu Aug 17, 2006 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Left Outer Join
Replies: 8
Views: 2865

Try to use generated SQL wherever possible. Everything in the table name field becomes the FROM clause. So what you put in the table name field is all of: table1 LEFT OUTER JOIN table2 ON table1.key = table2.key (Adjust as required. Make sure any ambiguous column names are fully qualified in the Der...
by ray.wurlod
Thu Aug 17, 2006 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort stage writes #'s in place of null in output to seq file
Replies: 3
Views: 1098

Diagnostician Note Don't be in too much of a hurry to attribute blame to a particular stage type. Here the subject line suggests a problem with the Sort stage, which may mislead future searchers. The problem wasn't. DataStage did exactly what it was programmed to do - via the pad character property...
by ray.wurlod
Thu Aug 17, 2006 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count records of hashed file in a routine
Replies: 12
Views: 3665

Why a routine? Can't you use a job? What do you want to do with the result? Clearly you are unfamiliar with DataStage routines. You can use the supplied before/after routine ExecUV to execute COUNT #HashedFile# command, but what do you want to do with the result?