Search found 53125 matches

by ray.wurlod
Tue Jun 07, 2005 2:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Steps to upload DataStage client on WProf
Replies: 2
Views: 847

If you're looking for a website from which you can obtain the client software you're out of luck. There isn't one. You must buy the software. With it you get full and complete installation instructions. Whether or not "they" will sell just the client is problematic; the client alone is totally usele...
by ray.wurlod
Tue Jun 07, 2005 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Test for empty hashed file
Replies: 5
Views: 1885

You can create a routine to perform either of the commands Kim suggested, and use the routine's return value to drive - perhaps - a nested condition activity in a job sequence. It really is difficult to answer such a vague specification.
by ray.wurlod
Mon Jun 06, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger Expression
Replies: 4
Views: 1061

So... what has changed between when it was working and now?

Be prepared to look outside the job - even if nothing has changed in the job, something has clearly changed somewhere!
by ray.wurlod
Mon Jun 06, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to identify an End Of File (or end of data) status
Replies: 3
Views: 945

You can inspect the code produced by compiling the Transformer stage to see how it's done there. However you don't have access to the result of the "Get" function, so there's no convenient way for you to do it within the Transformer stage. Ken's suggestion is a good one; after all that's what the Ag...
by ray.wurlod
Mon Jun 06, 2005 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler or Interpreter?
Replies: 10
Views: 3184

The compiled code from a server job is not executable by the native machine; rather it is executed in a 'virtual machine' called the DataStage Run Machine. This assists in platform portability, and explains why you can't install an AIX DataStage on an HP-UX machine; the Run Machine is different. It'...
by ray.wurlod
Mon Jun 06, 2005 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic Statement - CREATE
Replies: 11
Views: 1940

What value is returned by STATUS() when OPENSEQ is executed? The ELSE clause can be taken for a number of reasons - read the manual on OPENSEQ. For example, of C:\DS305Files does not exist, OPENSEQ will fail, you will not have a valid file variable, and CREATE is therefore doomed. I don't use CREATE...
by ray.wurlod
Mon Jun 06, 2005 3:07 pm
Forum: General
Topic: Exception Handler Issue
Replies: 7
Views: 3279

The default of 50 can be changed in Director. Choose Tools > Options. Find Limits.
by ray.wurlod
Mon Jun 06, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to declare & use parameter in Routines
Replies: 14
Views: 11356

:idea: :!:
Don't use WeofSeq if you're planning to read from the file. WeofSeq writes an end-of-file mark at the current location, which is beginning of file if the file has just been opened. This truncates the file to 0 bytes.
by ray.wurlod
Mon Jun 06, 2005 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job completion status
Replies: 5
Views: 1454

Read the help on DSGetJobInfo - there is a different argument (new in version 7.x??) that allows you to demand the interim status (that is, the status as if the job had already finished).

The reason DSJobReport is different is that it is actually executed after the job has finished.
by ray.wurlod
Mon Jun 06, 2005 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installing Datastage on windows XP home edition
Replies: 3
Views: 1042

You definitely need XP Pro. If that has SP2, you will also need a patch from the vendor (through your support provider).
by ray.wurlod
Mon Jun 06, 2005 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Relationship between Nodes and Partitions
Replies: 3
Views: 1296

A Data Set is partitioned so that there is exactly one partition on each of the processing nodes defined for the stage whose input link specifies the partitioning algorithm. By default this is the same as the number of processing nodes in the configuration file associated with the job for its curren...
by ray.wurlod
Mon Jun 06, 2005 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Boosting the Performance of the job
Replies: 8
Views: 2181

When you select, ORDER BY the pivot keys. This will help a little. The only other suggestion I can make is to capture performance statistics for the Pivot and Transformer stages; this will highlight any "hot spots". For example, how complex are your Transformations? Statistics gathering is enabled o...
by ray.wurlod
Mon Jun 06, 2005 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange hash file behaviour
Replies: 6
Views: 1137

Beware that this symptom can also be seen if someone creates another entry into the dynamic hashed file directory.

The directory must contain exactly the three files DATA.30, OVER.30 and .Type30.
by ray.wurlod
Mon Jun 06, 2005 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Redbrick Bulk load problem
Replies: 3
Views: 918

The message "rb_tmu not found" indicates that what I suggested earlier (that the parent directory $RB_CONFIG/bin is not in your PATH). Modify the dsenv file so that all required Red Brick environment variables are set for DataStage processes. There is no such thing as rb_ctmu. Red Brick has: rb_tmu ...
by ray.wurlod
Mon Jun 06, 2005 2:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 222 Phantom 26691 (Characters not in NLS map)
Replies: 7
Views: 5500

The correct NLS map for hashed files is always NONE. This is because hashed files are internal to DataStage; the data have already been mapped from the external representation by the time they get into a hashed file. Had you mentioned in your original post that a hashed file was involved we probably...