Search found 53125 matches

by ray.wurlod
Fri Jan 19, 2007 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

No.

Whatever you do, you are going to require two passes through the data to do anything with ranks.
by ray.wurlod
Fri Jan 19, 2007 5:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance with 7.1r2
Replies: 8
Views: 1588

Do you really need a Link Collector? In theory your job should go faster with parallel independent streams of inserts.
by ray.wurlod
Fri Jan 19, 2007 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to connect to DB2
Replies: 14
Views: 6824

Loading the required rows and columns (and only those) from the DB2 table into a hashed file and using that for the lookups will be fastest.
by ray.wurlod
Fri Jan 19, 2007 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS mapping error
Replies: 1
Views: 925

What character map(s) have you set? TH-THAI is a locale setting, and has little if any bearing on the display of characters. You need to specify the correct character map on any passive stage (one that interacts with persistent data).
by ray.wurlod
Fri Jan 19, 2007 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: comparaison between Old and new value in stage variable
Replies: 13
Views: 3039

The only "priority" is that they are executed in the order in which they appear in the grid; reordering the grid rows is a simple matter of dragging the leftmost column (stage variable name) up or down as required.
by ray.wurlod
Fri Jan 19, 2007 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding pivot stage
Replies: 6
Views: 1260

IMPORT the table definition from Oracle. What comes in?
by ray.wurlod
Fri Jan 19, 2007 5:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling routine within a routine
Replies: 7
Views: 2063

One of the strange things about functions in DataStage BASIC is that they can, indeed, be called as subroutines; the first argument position is reserved for the return value. Therefore the following are equivalent. Call DSX.UTILITYHASHLOOKUP(Result,"HA_REC_TYPE","2000",2)...
by ray.wurlod
Fri Jan 19, 2007 5:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Analyzing parameters
Replies: 12
Views: 2428

What do you want to get from DS_JOBOBJECTS pertaining to parameters?
by ray.wurlod
Thu Jan 18, 2007 8:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding pivot stage
Replies: 6
Views: 1260

Change CUST_ID to Integer in your job. Oracle uses NUMBER, which imports as Numeric, but SQLColAttributes() understands ODBC conventions rather than Oracle conventions. This can lead to minor inaccuracies when importing metadata from Oracle tables. You must make the metadata match.
by ray.wurlod
Thu Jan 18, 2007 8:13 pm
Forum: General
Topic: Unable to import ODBC table defs
Replies: 19
Views: 7567

You have clearly missed at least one vital aspect of those permissions.
by ray.wurlod
Thu Jan 18, 2007 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: <transform> Error when checking composite operator: g+
Replies: 11
Views: 6013

It is not offensive. In my own terse way I was trying to make a point that no-one should be asked to adminsiter DataStage without vendor or good third-party training. You didn't become a DBA without training, did you? DataStage can be more complex than administering a database. DSXchange is here to ...
by ray.wurlod
Thu Jan 18, 2007 8:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Requirements for Aggregator Stage
Replies: 3
Views: 3515

Only until you exhaust available memory for the hash table, then it must spill to disk, which is quite a slowdown.
by ray.wurlod
Thu Jan 18, 2007 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert datetime to internal format
Replies: 6
Views: 1328

An internal format does exist for date, time and timestamp in parallel jobs; they are all binary and the various StringTo... functions (Transformer stage) or ..._from_string functions (Modify stage) effect the transition if what you have is a string.
by ray.wurlod
Thu Jan 18, 2007 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate a unique sequence number in DataStage
Replies: 4
Views: 3731

Or run the Transformer stage in Sequential execution mode.
by ray.wurlod
Thu Jan 18, 2007 7:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help with change in Data type
Replies: 10
Views: 3287

Slightly off topic, the decision about Transformer versus other stage types is also a function of version. Somewhere in version 7.1 Transformer stage performance was enhanced, and can now be preferred to Filter or Switch (for example) which are effectively interpreted rather than compiled. However, ...