Search found 53125 matches

by ray.wurlod
Sun Apr 18, 2010 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read a Parameter file from UNIX Directory & pass value
Replies: 17
Views: 13724

The one that reads one line from a file does not have to be, indeed if it were it would be a waste of resources.
by ray.wurlod
Sun Apr 18, 2010 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to retreive data
Replies: 2
Views: 1093

A Search on DSXchange yielded seven hits (not counting this thread). A search on Google yielded more than 10,000 hits.
by ray.wurlod
Sun Apr 18, 2010 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to retreive data
Replies: 2
Views: 1093

Moderator: please move to Server forum
by ray.wurlod
Sun Apr 18, 2010 9:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Brain Teaser...Complex Scneario
Replies: 8
Views: 4293

Yes, I can see that as a reading, and a variable-number-of-elements vector is probably a good solution in that case.
by ray.wurlod
Sun Apr 18, 2010 9:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Brain Teaser...Complex Scneario
Replies: 8
Views: 4293

No need for vector/array. Just concatenate to the existing string if the indicator is greater than one, or use the new string if the indicator is 1.
The Remove Duplicates stage captures the last of each group. That, along with sorted data, is all you need.
by ray.wurlod
Sun Apr 18, 2010 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert, delete and update
Replies: 6
Views: 2994

DataStage does not create any locks.

But the database server does.
by ray.wurlod
Sun Apr 18, 2010 1:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while execting the Parallel jobs
Replies: 3
Views: 1512

When View Data provides you with the opportunity to inspect the output of the command, accept the invitation. It will tell you what went wrong.
by ray.wurlod
Sun Apr 18, 2010 1:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling huge volume of data
Replies: 2
Views: 996

Just dream up appropriate WHERE clauses (probably with job parameters for the constant(s)) for extraction SQL.
by ray.wurlod
Sun Apr 18, 2010 1:00 pm
Forum: General
Topic: Identify the duplicate records
Replies: 1
Views: 843

Use a fork-join design with one side of the fork using an Aggregator to count the records with a given grouping key. After the Join, add the "(Duplicate record)" text to any record that has a count > 1. Or, if you have a source that is accessible via SQL, you could use a HAVING clause and ...
by ray.wurlod
Sun Apr 18, 2010 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to solve this error
Replies: 2
Views: 1360

Posting the same question in more than one thread will not get you any more answers.
by ray.wurlod
Sun Apr 18, 2010 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hi
Replies: 1
Views: 1260

Please choose meaningful subjects. It will assist future searchers.

What do you think the message means? What nodes (fastnames) are mentioned in the configuration file that was selected for this job run?
by ray.wurlod
Sat Apr 17, 2010 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sting to time conversion
Replies: 13
Views: 3414

The original poster specified "Teradata database" in the additional information field. I doubt that Teradata supports the TO_CHAR function.

Attention to detail is one of the vital attributes that anyone working in data quality and information management requires.
by ray.wurlod
Sat Apr 17, 2010 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Case sensitive option when sorting
Replies: 6
Views: 2474

This is not the whole story. Only a certain amount of memory per node is available for sorting. Once this amount is exceeded, the sort must use disk files in the scratchdisk areas. This adds cost that you have not considered, probably more cost than the other steps (depending on the source of the ro...
by ray.wurlod
Sat Apr 17, 2010 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage job hangs
Replies: 3
Views: 3117

Welcome aboard.

That's not a step - it's the log entry containing the configuration file that the job is using.

Clearly the job, being such a simple design, is waiting for *something* in Oracle. Enlist your DBA to learn what that is.
by ray.wurlod
Sat Apr 17, 2010 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Space
Replies: 3
Views: 1846

There is probably a mechanism for loading only the rows you will need into the lookup table. The technique is known as "bucket table": you generate a list of the keys from source, then join that result to the reference source as part of loading the lookup table. In the old days, the bucket...