Search found 53125 matches

by ray.wurlod
Wed Apr 26, 2006 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while opening a job
Replies: 11
Views: 2677

I wonder what R0 could be? Can someone who knows their way around take a look at such a record in DS_JOBOBJECTS and post their findings? (I don't have access to DataStage at the moment.)
by ray.wurlod
Wed Apr 26, 2006 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running with 4 nodes
Replies: 7
Views: 2446

Not without seeing the actual job design.
by ray.wurlod
Wed Apr 26, 2006 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: KeyLookup Failure! WHY?
Replies: 2
Views: 1090

The key lookup failed because the key did not exist on the reference input link. The job aborted because you had set the "lookup failed" rule to FAIL. By setting it to CONTINUE you allow the job to continue to run; any columns mapped from the reference input link will contain NULL (it becomes effect...
by ray.wurlod
Wed Apr 26, 2006 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connect failed --Oracle error: -2127
Replies: 9
Views: 4728

Libraries are definitely a problem. DataStage is a 32-bit application (except on Itanium) so you need to ensure that the shared library search path that DataStage uses (set up in the dsenv script) has the Oracle 32-bit library directory ahead of the Oracle 64-bit library directory.
by ray.wurlod
Wed Apr 26, 2006 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification Pass Score
Replies: 18
Views: 5581

So??? Maybe this site will help. I wonder if IBM would allow it as an alternate certification exam?
by ray.wurlod
Wed Apr 26, 2006 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No color change in link
Replies: 13
Views: 4087

Not all stage types in parallel jobs support maintenance of performance statistics in Designer. This is particularly true of some of the debugging stages.
by ray.wurlod
Wed Apr 26, 2006 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updates using Teradata API
Replies: 1
Views: 718

That is true of almost all passive stages in parallel jobs. You need to adopt a different mind set from your server job design skills. Parallel jobs do not accept this "blocking" strategy (so that fastest possible throughput can be obtained, without causing dataflow deadlocks and permitting of re-pa...
by ray.wurlod
Wed Apr 26, 2006 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Reading the fixed width files in Parallel jobs
Replies: 4
Views: 1114

There are five environment variables that can affect the efficiency with which fixed width records can be propagated between player processes; these are the so-called "transport block" variables. Read about them in the Parallel Job Advanced Developer's Guide, Chapter 6.
by ray.wurlod
Wed Apr 26, 2006 3:17 pm
Forum: Site/Forum
Topic: Returning text error message
Replies: 2
Views: 2008

Simply looking in the job log will reveal the error most of the time. Resetting the job will retrieve the error information most of the rest of the time.
by ray.wurlod
Tue Apr 25, 2006 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Query Stage Names from Universe
Replies: 10
Views: 2596

Why not use the API?

Code: Select all

DSGetJobInfo(hJob, DSJ.STAGELIST)
DSGetStageInfo(hJob, DSJ.LINKLIST)
by ray.wurlod
Tue Apr 25, 2006 9:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running with 4 nodes
Replies: 7
Views: 2446

Everything you need to know is here. main_program: Fatal Error: There are irreconcilable constraints on the number of partitions of an operator: parallel Dset_TEDSZ06002JB_00001. The number of partitions is constrained to 1, but the eSame input file, /work/EDWCST/WHSE/working/ds_TEDSZ06002JB_00001.d...
by ray.wurlod
Tue Apr 25, 2006 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification Pass Score
Replies: 18
Views: 5581

Where's the challenge in that??? Even if the pass mark were 75/79 that ought not to prevent you from attempting the test. You should be aiming at scoring 100%.
by ray.wurlod
Tue Apr 25, 2006 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute command with sequnce
Replies: 5
Views: 1800

What kind of trigger(s) do you have on the Execute Command activity? Do you have any other form of error handling, such as "automatically handle activities that fail" or an Exception Handler?
by ray.wurlod
Tue Apr 25, 2006 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running job in control M
Replies: 16
Views: 17532

A Sequencer can only perform one task; triggering either when Any or All if its inputs have fired.

The term you need here is Job Sequence. Or perhaps Sequence. Not Sequencer.
by ray.wurlod
Tue Apr 25, 2006 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup fileset vs Dataset
Replies: 8
Views: 8979

Lookup File Set is accessed from disk. Only its index is loaded into memory, as far as I am aware.