Search found 53125 matches

by ray.wurlod
Fri Dec 09, 2005 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to setup DataStage for MPP system
Replies: 14
Views: 11242

"Connection refused" usually indicates that the two machines are not in a trusted relationship. Have you made entries in the appropriate files, such as lmhosts, to enable this?
by ray.wurlod
Fri Dec 09, 2005 5:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata Save
Replies: 2
Views: 891

I don't believe that level of automation of metadata capture is yet possible - you need to explicitly (manually) initiate the capture of metadata.

Why not post on the Metadata forum? You might get a better answer there.
by ray.wurlod
Fri Dec 09, 2005 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Min Data of Two Columns
Replies: 7
Views: 1206

The easiest and most easily maintained solution is a simple If..Then..Else - for example if using stage variables

Code: Select all

If svMinA < svMinB Then svMinA Else svMinB
by ray.wurlod
Fri Dec 09, 2005 5:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: renamming the report
Replies: 0
Views: 649

What exactly is the question? Changing the name of a file once it has been processed is very easy using ExecSH/ExecDOS as an after-job routine. This has the added advantage that you can use job parameters in the Input Values field.
by ray.wurlod
Fri Dec 09, 2005 5:41 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Exceptions when invoking RTI Job
Replies: 3
Views: 3691

Did you [i]register[\i] the Web service?
by ray.wurlod
Fri Dec 09, 2005 5:39 pm
Forum: IBM QualityStage
Topic: Incomplete record read from file
Replies: 1
Views: 1671

Welcome aboard! :D The warning is simply an alert that you are using an override, so can safely be ignored. The error suggests that there is a problem with the FCUST file - at least one of the rows in the file does not match the file definition that you have set up for it. The good news is that - so...
by ray.wurlod
Thu Dec 08, 2005 4:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error occurred during link open process
Replies: 7
Views: 1934

Welcome aboard. :D

Your request does not give us enough information from which to diagnose. Something, somewhere, is failing to be opened, but you can see that for yourself.

Please describe your job design, in particular the stage types used and which connect to which.
by ray.wurlod
Thu Dec 08, 2005 4:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of processes in PX
Replies: 6
Views: 1398

The conductor process is responsible for overall synchronization, for reading the configuration file, for starting a section leader process on each processing node defined in that file and passing the generated osh to the section leader. The section leader processes feed messages back to the conduct...
by ray.wurlod
Thu Dec 08, 2005 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of processes in PX
Replies: 6
Views: 1398

Assuming no combination (that is, APT_DISABLE_COMBINATION is True), you get one conductor process, one section leader process per processing node defined in the configuration file, and one player process per stage per processing node. In your example, 25 DataStage ( osh ) processes. The player proce...
by ray.wurlod
Thu Dec 08, 2005 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence file stage Defaut NULL String property
Replies: 6
Views: 1839

As with the server equivalent, you have a null value replacement property in the stage properties. It is an optionally added property - you will find it in the bottom right pane when record-level properties are selected. As with server jobs you can override this on a per-column basis. Open the Colum...
by ray.wurlod
Thu Dec 08, 2005 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TeraSync: TimeOut
Replies: 9
Views: 4755

Welcome aboard. :D There's a search facility here, which would answer at least the first of your questions. Become familiar with it - it can save you some time. Anything with a ds... identifier is likely to be DataStage; ds_ipcput is an interprocess communications timeout waiting to send. You've tak...
by ray.wurlod
Thu Dec 08, 2005 12:22 am
Forum: Site/Forum
Topic: Lose The Graphics?
Replies: 6
Views: 3290

Lose the fireworks. We're well over 0.1 lakhs now.
by ray.wurlod
Wed Dec 07, 2005 7:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to list config parameter values
Replies: 3
Views: 1517

From the operating system: $DSHOME/bin/analyze.shm -c shows the config file contents $DSHOME/bin/analyze.shm -t shows the values loaded in memory $DSHOME/bin/analyze.shm -t0 shows the values loaded in memory and suppresses asterisks that show non-default values smat (shared memory analysis tool) is ...
by ray.wurlod
Wed Dec 07, 2005 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter operator requires more output ? Really?
Replies: 4
Views: 3931

Read the Parallel Job Developer's Guide about what the Filter stage does. It filters a single input stream onto two or more output streams.