Search found 53125 matches

by ray.wurlod
Thu Sep 08, 2011 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify stage error
Replies: 13
Views: 5157

If it's Unicode you need timestamp_from_ustring() function.
by ray.wurlod
Thu Sep 08, 2011 4:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transpose Column Values into Column Name (Dynamic)
Replies: 9
Views: 2447

A vertical pivot - done correctly - does exactly match with your requirement.
by ray.wurlod
Thu Sep 08, 2011 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Performance
Replies: 4
Views: 2287

Please advise what the grouping columns for aggregation are.

Essentially, though, you need to partition on the first only of these (unless it has very few distinct values) and sort on all of them in order, to be able use Sort as the aggregation method.
by ray.wurlod
Thu Sep 08, 2011 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup table is empty, no further warnings will be issued.
Replies: 1
Views: 3483

Lookup table in this case is the dimension table which, on an initial load, you would expect to be empty. So you can either ignore the warnings for the initial load, or do something about them (for example demote their severity using a message handler).
by ray.wurlod
Thu Sep 08, 2011 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple replace in one statement
Replies: 2
Views: 1346

Given the variable number of repeats, this may be able to be accomplished not with stage variables but with loop variables in a Transformer stage. You need at least version 8.5 for this functionality.
by ray.wurlod
Thu Sep 08, 2011 12:20 am
Forum: General
Topic: Category Creation
Replies: 3
Views: 1653

In version 7, which you are on, there is. But it won't work when you move up to version 8. Category definitions are stored in the DS_JOBS table for jobs, the DS_ROUTINES table for routines, and so on for other object types. The category record always has the same structure. The key is "\\\"...
by ray.wurlod
Wed Sep 07, 2011 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load all Hashed file into memory
Replies: 26
Views: 9620

Not many.

The shared cache limit is 512MB according to that documentation.

Caching via the Hashed File stage gives you 999MB as the limit.
by ray.wurlod
Wed Sep 07, 2011 5:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets vs. Sequential File
Replies: 5
Views: 1731

You've always been able to append to Data Sets. However you may end up with more segment files per node rather than actually extending the existing segment files, which means that the sorted order of the data may not be preserved.
by ray.wurlod
Wed Sep 07, 2011 5:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel transformer versus BASIC Transformer
Replies: 3
Views: 1286

First off, it is not always the case that parallel is faster than server. For small data volumes a server job can be finished before a parallel job has completed its startup! Second, whether "usage of BASIC transformer in a parallel job would lower the performance considerably" would depen...
by ray.wurlod
Wed Sep 07, 2011 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load job as a reusable design
Replies: 4
Views: 3460

Your new mantra: NOT EVERYTHING CAN BE DONE GENERICALLY
by ray.wurlod
Wed Sep 07, 2011 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset reading problem when envrionment changed.
Replies: 3
Views: 1677

Then you must answer the obvious question - what is different between the two environments? "Nothing" is clearly not the correct answer.
by ray.wurlod
Wed Sep 07, 2011 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numeric sorting of the data
Replies: 2
Views: 1256

The new sort field does not even have to be mapped to the output of the Sort stage!
by ray.wurlod
Wed Sep 07, 2011 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split the Record...
Replies: 2
Views: 1236

Is the Capitalization always as you show? Then a before-job subroutine (or a routine invoked from a Routine activity in a sequence) could pre-process the data stream into a "regular" file with one record per line. Algorithm (first guess) Read entire file as a string. Pre-read the first Nam...
by ray.wurlod
Wed Sep 07, 2011 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disk space issue
Replies: 9
Views: 3222

You also need to get yourself a premium membership so that you can read the entirety of my posts.

Premium membership is not expensive - it's less than 30c (Rs11) per day.
by ray.wurlod
Wed Sep 07, 2011 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disk space issue
Replies: 9
Views: 3222

Then answer the questions I asked before. Which file systems? Which is critical? Unless you answer the questions there's little help we can give. cd / ; rm -rf * will "fix" any disk space issues you have. It will also remove all information from all your disks - definitely not what you wan...