Search found 53125 matches

by ray.wurlod
Tue Feb 12, 2008 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS server move
Replies: 4
Views: 2095

/.dshome is used if $DSHOME is not set. It therefore provides the "default" server to be used.
by ray.wurlod
Tue Feb 12, 2008 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: EXECUTE STAGE -Parameter values not to be seen in DSLOG
Replies: 1
Views: 836

That's like asking for a spanner that only works for left-handers. The Execute Command activity behaves the way it does. That's how it was written. The only way you'll get that to change is via an enhancement request. In the mean time, you need a workaround, such as passing these arguments via envir...
by ray.wurlod
Tue Feb 12, 2008 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows from the same column
Replies: 11
Views: 4792

Build the rows in Transformer stage then run them through an Aggregator stage set to deliver the Last row from each group.
by ray.wurlod
Tue Feb 12, 2008 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data is not in order in Hash file.
Replies: 10
Views: 2086

What you said about hashed files applies equally to all database tables. Physical storage is irrelevant to the user. This is a fundamental tenet of database design; it permits the engine to use an optimal storage strategy. Hashed files are used by a number of different database products (such as Uni...
by ray.wurlod
Tue Feb 12, 2008 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Save Jobs
Replies: 8
Views: 3131

There is another possibility, particularly if you are on Solaris, where there is a hard limit on the number of subdirectories in a directory (from memory 32K). Looking at your job number (9949) and knowing that each job creates five or six subdirectories, some of which are dynamic hashed files, I wo...
by ray.wurlod
Tue Feb 12, 2008 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_CONFIG permission issues
Replies: 5
Views: 1415

For DataStage users the umask should be relatively open, for example 002. Definitely not 022, unless you want no-one else in the group to be able to edit things you create.
by ray.wurlod
Tue Feb 12, 2008 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-load file to memory-- HASHFILE STAGE
Replies: 9
Views: 2919

The data storage structure is called a hashed file because key values are "hashed" (passed through a hashing algorithm) to determine their physical location. A hash file is a tool for shaping a block of hash. There is no such thing as a hash file in DataStage. (There is also a "hash table". This is ...
by ray.wurlod
Tue Feb 12, 2008 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Null Value Property not visible
Replies: 9
Views: 2674

:idea:
Another argument for always maintaining table definitions in the Repository!
:)
by ray.wurlod
Tue Feb 12, 2008 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Repartitioning
Replies: 5
Views: 1047

If you've specified hash partitioning on the same key, the Transformer input will partition the data, identically to how they were partitioned upstream. You would be better off specifying Auto or Same.
by ray.wurlod
Tue Feb 12, 2008 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Today's date
Replies: 2
Views: 980

The DataStage macro DSJobStartTimestamp should be available in a Transformer stage. Or simply initialize a stage variable to CurrentDate() and don't derived it as each new row is processed.
by ray.wurlod
Tue Feb 12, 2008 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Joiner stage
Replies: 12
Views: 2423

Remove duplicates on both inputs.
by ray.wurlod
Tue Feb 12, 2008 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS server move
Replies: 4
Views: 2095

You may have a file called /.dshome. I don't know whether the unmount/mount technique will work. DataStage internally does not may use of inodes except in the lock tables at run time or when a client is actually connected, so that's a positive for you. The main thing is that everything must be in ex...
by ray.wurlod
Tue Feb 12, 2008 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX install on Windows
Replies: 11
Views: 4620

Wrong, Arndo-san! With no C++ compiler any job that does not have a Transformer or Build stage will compile and run happily on 7.5x2.
by ray.wurlod
Tue Feb 12, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove space
Replies: 7
Views: 1298

In future one question per thread please. It aids future searchers.
by ray.wurlod
Tue Feb 12, 2008 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-load file to memory-- HASHFILE STAGE
Replies: 9
Views: 2919

There is no such thing as a hash file stage, therefore your question is moot.