Search found 53125 matches

by ray.wurlod
Mon Dec 11, 2006 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 9
Views: 4230

The project and job are not given as pathnames.
by ray.wurlod
Mon Dec 11, 2006 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs contain lesser fields than defined in metadata
Replies: 5
Views: 1399

There is no "missing columns action" in parallel Sequential File stage.
by ray.wurlod
Mon Dec 11, 2006 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unicode Error
Replies: 2
Views: 1604

Check again. What I described is the only possible cause for the message "string[max=0] found".
by ray.wurlod
Mon Dec 11, 2006 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connection Dead
Replies: 12
Views: 7727

Have you "checked the same" while the job is running?
by ray.wurlod
Mon Dec 11, 2006 2:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conversion warning :---decimal_from_string data lost
Replies: 4
Views: 3586

It's really an informational message that you seem always to get with decimal_from_string() even when the conversion will always be good; use a message handler to demote it to informational.
by ray.wurlod
Mon Dec 11, 2006 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding max value for a column using aggregator.
Replies: 8
Views: 5125

Are you using sort or hash method in the Aggregator?

Are there fields on the input of the Aggregator that are not used? If so, get rid of them.
by ray.wurlod
Mon Dec 11, 2006 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass a value in parameter for the next job
Replies: 17
Views: 4642

Return the date in the Routine.

Code: Select all

Ans = MyDate

When assigning a value to the job parameter, use the Routine activity's return value.

Code: Select all

RoutineActivity.$ReturnValue

This would work just as well if you used the hashed file.
by ray.wurlod
Mon Dec 11, 2006 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrade Queries
Replies: 2
Views: 826

The upgrade should be straightforward. Make sure you have a backup and an export. Printer segment removed is not an error - it's an informational message resulting from someone logging in with a different login ID than the user who previously had that user number, soon after the previous user logged...
by ray.wurlod
Mon Dec 11, 2006 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of MQ-Series
Replies: 5
Views: 1429

There are specific stage types for working with MQ Series queues and with XML. As suggested review the manuals for these. If you're unfamiliar with the technologies, organize to be briefed by someone who is familiar, ideally with how the technology is used at that site.
by ray.wurlod
Mon Dec 11, 2006 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FIND THE CORRECT OF ERROR
Replies: 3
Views: 754

All the column values that you tried to insert are given in the logged error message. You can inspect that to determine which of them is too large.
by ray.wurlod
Mon Dec 11, 2006 1:46 pm
Forum: General
Topic: regarding batch file
Replies: 11
Views: 4962

Not sure what you mean by a batch file. Do you mean a DataStage batch (created in Director) or a BAT file (created in Windows/DOS)? What, after that, do you mean by a "DataStage shell"? Why do you need to search for it? It's in the DataStage engine directory's bin sub-directory. Can you please sugge...
by ray.wurlod
Mon Dec 11, 2006 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass a value in parameter for the next job
Replies: 17
Views: 4642

@TM is used to construct a multi-column key. You definitely don't need it, if JOB_NAME is the only key column, and it may be interfering with correct operation. You pass the job name to UtilityHashLookup and request it to return the field number containing START_TS. You can establish this field numb...
by ray.wurlod
Mon Dec 11, 2006 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unicode Error
Replies: 2
Views: 1604

It's nothing to do with Unicode. Somewhere in your design you have a VarChar data type with no precision; that is, a VarChar(0).

Fix it.
by ray.wurlod
Mon Dec 11, 2006 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 9
Views: 4230

The dsjob executable is in the DataStage engine's bin subdirectory. This needs to be in your PATH, just as it does in Windows, or the full pathname of the executable must be given, just as it must in Windows. So, if you're attached to the $DSHOME directory, you can use the relative pathname bin/dsjo...