Search found 53125 matches

by ray.wurlod
Mon Nov 13, 2006 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGBUS ERROR IN LOOKUPS
Replies: 12
Views: 2721

As I stated earlier, write and read of the same object in the same job is not supported in parallel jobs, in general. It is a blocking operation, which interferes with pipeline parallelism.
by ray.wurlod
Mon Nov 13, 2006 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookups errors
Replies: 1
Views: 1017

Duplicate post Please reply to other thread. Etiquette Note Posting the same question more than once is frowned upon here, and will not attract more or different answers. It's a chore to those of us who read every post, and we don't feel positively about answering such posters. If you need urgent h...
by ray.wurlod
Mon Nov 13, 2006 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Teradata PT availability
Replies: 1
Views: 847

"They" have concentrated their efforts re parallelism in parallel jobs in the recent past. Without managing it yourself (Link Partitioner and external scripts?) I don't think there's much out-of-the-box capability to support TPT functionality in DataStage server jobs. Do you have Enterprise Edition ...
by ray.wurlod
Mon Nov 13, 2006 9:59 am
Forum: General
Topic: error "ds_uvgetnext() - Pin 1 not initialised"
Replies: 8
Views: 4578

The function ds_uvgetnext() is trying to fetch the next row from a stream input connected from a Hashed File stage. If there were a reference link from the Hashed File stage to the Transformer stage the function would be something likeds_uvgetbykey(). Are you SURE that the stream input is coming fro...
by ray.wurlod
Mon Nov 13, 2006 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGBUS ERROR IN LOOKUPS
Replies: 12
Views: 2721

Standard medical advice: if it hurts, don't do it.
by ray.wurlod
Mon Nov 13, 2006 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing multiple sequential files simultaneously
Replies: 2
Views: 1231

Duplicate post

Please post on other thread
by ray.wurlod
Mon Nov 13, 2006 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unwanted Folders
Replies: 3
Views: 1049

Search the forum to discover the purposes of these. Each is vital in its own way to the job it supports - none is unwanted unless you no longer need the job. If you're looking to recover some disk space, clean out old files from the &PH& directory, and any old files in the directory whose p...
by ray.wurlod
Mon Nov 13, 2006 9:50 am
Forum: General
Topic: error "ds_uvgetnext() - Pin 1 not initialised"
Replies: 8
Views: 4578

Bienvenue! I think, from your message, that you may have the wrong links to the Transformer stage. The reference link must come from the Hashed File stage. Can you post your job design? For example (wrapped in Code tags) HashedFile : : (reference) : SeqFile ------> Transformer ------> (s...
by ray.wurlod
Mon Nov 13, 2006 9:46 am
Forum: General
Topic: Simultaneous Processing of multiple sequential files
Replies: 4
Views: 3307

This is not a good name for a job. It is the default name. Prefer meaningful names. Make sure also that you pass the file name as a parameter to each invocation, and that you ensure that the attach was successful. A job that is not in a runnable state has possibly never been compiled, or aborted, cr...
by ray.wurlod
Mon Nov 13, 2006 7:50 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Datastage Enterprise turorial and user's guide
Replies: 7
Views: 3958

If you have DataStage client installed, all the manuals are in the Docs subfolder.
by ray.wurlod
Mon Nov 13, 2006 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGBUS ERROR IN LOOKUPS
Replies: 12
Views: 2721

Explain the entire job. What you have supplied is insufficient for cogent diagnosis. SIGBUS is one of the standard UNIX signals; type man signal at a UNIX prompt to learn a little more about this particular signal. In general, in parallel jobs, simultaneous write and read to the same object is not p...
by ray.wurlod
Mon Nov 13, 2006 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how transformer works internally in datastage PX
Replies: 5
Views: 4724

The error message will include the generated C++ code, if it gets that far. Otherwise the error message will highlight the syntax error. But you have chosen not to post the error message, so your question is in the class "my car won't start, what's wrong with it?".
by ray.wurlod
Mon Nov 13, 2006 7:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with DSGetStageInfo
Replies: 7
Views: 2474

JOBCONTROL.H contains a list of possible values returned by each of the DataStage API functions.
by ray.wurlod
Mon Nov 13, 2006 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Documentation for Datastage provided routines
Replies: 4
Views: 2018

My point is that they're not provided - they don't occur in the Routines branch.
by ray.wurlod
Mon Nov 13, 2006 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: maximum number of processes (%s) exceeded
Replies: 2
Views: 1337

You are calling the SP for every row processed. Row buffering means that you are calling it N times at a time, depending on how many rows fit in your virtual Data Set buffers.