Search found 53125 matches

by ray.wurlod
Thu Dec 21, 2006 4:26 pm
Forum: General
Topic: NLS setting for Spanish and Mexican
Replies: 1
Views: 2527

Try using NONE. That may work except for a few characters at the high end of the range (single byte values 248 through 255). If that works, try some of the ISO 8859 variations - there are twelve subsets - but I don't have the documentation with me. You may also need to set some database-specific env...
by ray.wurlod
Thu Dec 21, 2006 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation
Replies: 20
Views: 4458

Looks like you've asserted that the input is sorted, and the Aggregator_2 stage has found a row not to be in the indicated sorted order.
by ray.wurlod
Thu Dec 21, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create a Shared container with a hash file for parallel
Replies: 8
Views: 1545

DSguru2B wrote:Really, where.... :P

Just before "Last edited by DSguru2B on Fri Dec 22, 2006 7:50 am; edited 1 time in total"
by ray.wurlod
Thu Dec 21, 2006 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding command line utility
Replies: 30
Views: 6046

What are you trying to accomplish?
The join between DS_JOBS and DS_JOBOBJECTS is made as

Code: Select all

DS_JOBS.JOBNO = DS_JOBOBJECTS.OBJIDNO
by ray.wurlod
Thu Dec 21, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create a Shared container with a hash file for parallel
Replies: 8
Views: 1545

+++ Error: missing apostrophe. Out of cheese error. Redo from start. +++
by ray.wurlod
Thu Dec 21, 2006 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: assign multiple derivations in a transformer
Replies: 4
Views: 1325

Beware that you must assign a value irrespective of the test. So you need to decide values for variables a and b when x <> 1, and for c when x = 1. Sometimes you need to leave the value unchanged; in this case assign the stage variable to itself. For example, consider a stage variable svCounter that...
by ray.wurlod
Thu Dec 21, 2006 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: finding the space character
Replies: 1
Views: 856

Do you need to find it? Trimming leading space characters works just as effectively if there are some and if there are none. You could always compare the trimmed version with the original, perhaps in stage variables, then use the trimmed version as you wish.
by ray.wurlod
Thu Dec 21, 2006 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

Perhaps it needs a trailing semi-colon in the OPEN command?
by ray.wurlod
Thu Dec 21, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create a Shared container with a hash file for parallel
Replies: 8
Views: 1545

It's "hashed" file, not hash file. 1) You can create a server shared container and use that in a parallel job, provided that the restrictions described in Chapter 2 of the Parallel Job Developer's Guide about incorporating server components are observed. 2) Yes, but the job that dumps the hashed fil...
by ray.wurlod
Thu Dec 21, 2006 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Interesting Type conversion problem
Replies: 1
Views: 933

... which you have duly reported via your support provider?
by ray.wurlod
Thu Dec 21, 2006 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 4475

As I commented on Vincent's blog, the Modify stage is primitive. Deliberately. That's the secret of its success - it's fast, because YOU do the work.
by ray.wurlod
Thu Dec 21, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting Datasets - Windows
Replies: 9
Views: 3764

An orchadmin command is available on both platforms.
by ray.wurlod
Thu Dec 21, 2006 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Files created with Partitioning = Entire
Replies: 4
Views: 2359

Does the BuildLists job append or overwrite? Is "Allow duplicates" set?

Entire in an SMP environment should share the records in the (virtual) Data Set across all nodes. There's nothing documented that suggests the behaviour you describe.
by ray.wurlod
Thu Dec 21, 2006 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write Range Map
Replies: 1
Views: 1140

Not possible. The range map is binary, and in an undocumented proprietary format. Look in the job log of the job that writes the range map; it may give some clues. Otherwise, review the design of that job, and verify your ranges from that. When using the range map to perform range partitioning, add ...
by ray.wurlod
Thu Dec 21, 2006 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding command line utility
Replies: 30
Views: 6046

It's an even better answer if you've been bothered to document your job design.

Axiom: there is never time to retrofit documentation.
Moral: do documentation first.