Search found 53125 matches

by ray.wurlod
Sat Mar 03, 2007 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage Buffer issue?
Replies: 1
Views: 690

Dump the score - ascertain whether there are any inserted buffer operators. Without knowing that, it's impossible to advise. Larger buffers increase memory demand - smaller buffers decrease memory demand but also reduce throughput. Buffering is set (changed from default sizing) on the Advanced tab o...
by ray.wurlod
Sat Mar 03, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in partitioning the stages
Replies: 5
Views: 2190

APT_ParallelSortMergeOperator indicates a collector using the Sort Merge algorithm.
by ray.wurlod
Sat Mar 03, 2007 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 64BIT Hashed Files
Replies: 27
Views: 8641

Use a hex display (for example od -x DATA.30 | head -1on UNIX) to examine the first four bytes of the DATA.30 file. This is the magic number. See above for how to decode.
adef010c indicates 32-bit, adef020c indicates 64-bit. Adjust for little-Endian byte order.
by ray.wurlod
Sat Mar 03, 2007 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in partitioning the stages
Replies: 5
Views: 2190

Read the full error message. It should tell you the name of the stage in which the error was generated.
by ray.wurlod
Sat Mar 03, 2007 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: More column in RCP and less column in Target?
Replies: 8
Views: 1667

It depends on many factors. Rather than try to canvas them all here, why not try what you have in mind, and report the results back to this thread?
by ray.wurlod
Sat Mar 03, 2007 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to update the source table in the same job?
Replies: 17
Views: 4907

Why bother with a DataStage job? All you need is an UPDATE statement in the database.
by ray.wurlod
Sat Mar 03, 2007 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Please provide alternative method of loading
Replies: 8
Views: 2189

Re: thanx Ray

If I will do add another tranfromation my transfromation will take double time. That is not correct, and shows a weak understanding of how DataStage works. Without buffering, the Transformer stages will execute in the same process, and therefore add nothing to the overall run time - if you are perf...
by ray.wurlod
Sat Mar 03, 2007 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage config files.
Replies: 10
Views: 6579

dsenv is a shell script executed by all DataStage processes. It contains whatever you care to put in it. Typically it is used to set environment variable values, but I've also seen other commands in there, for example umask. .odbc.ini contains definitions of ODBC data sources. The above two files do...
by ray.wurlod
Sat Mar 03, 2007 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help Regarding:Binding output Interface
Replies: 7
Views: 1731

Both my source data type and the target data type are numbers. Incorrect. The error message informs us that the input field is ustring[max=40]; that is, VarChar(40) with the extended properties set to "Unicode". The longest integer (int32) value is 10 digits long. DataStage warns you that there are...
by ray.wurlod
Sat Mar 03, 2007 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel padding nulls for empty space !!
Replies: 11
Views: 2272

DSguru2B wrote:Thats a nice piece of document Ray. Did you prepare it?

Yes, it's part of an EE Transformation Techniques module I've developed for a Parallel Job Techniques class/tutorial. The tutorial as a whole is not ready yet; I will announce its availability and price when it is.
by ray.wurlod
Sat Mar 03, 2007 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Info in an job about SAP BAPI stage
Replies: 7
Views: 3253

And what does that suggest to you concerning the likely location of the problem (if not the cause)? The next step is to have your SAP gurus help you to identify any reasons (such as, but not limited to, locks or deadlocks or BAPI processes not running) that might cause the problem you encountered.
by ray.wurlod
Fri Mar 02, 2007 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error reading sequential file
Replies: 5
Views: 1374

Use Fmt() in the server jobs to format the decimal numbers with as many leading and trailing zeroes as the parallel job expects. For example Fmt(MyNumber, "15'0'R2") specifies 12 digits to the left and two digits to the right of the decimal place.
by ray.wurlod
Fri Mar 02, 2007 7:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel padding nulls for empty space !!
Replies: 11
Views: 2272

The modify operator (and therefore the Modify stage) supports a string_trim() function.

A fairly complete list of Modify stage functions may be had here and then, of course, there are the manuals.
by ray.wurlod
Fri Mar 02, 2007 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capturing Job's Version Number for audit meta-data
Replies: 9
Views: 2521

Here's a cute variation on the theme, retrieving the result as a single expression (for example to set a job parameter value). You need the job name from somewhere. Trans("DS_JOBOBJECTS", "J\" : Trans("DS_JOBS", JobName, 5, "X") : "\ROOT"...
by ray.wurlod
Fri Mar 02, 2007 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre load file to memory..enables ?
Replies: 1
Views: 713

You may load as many hashed files into the read cache in memory as you can fit in there. Once you exceed your limit, or if a hashed file is too large, you get a warning logged that the cache can not be used, and the hashed file will be accessed from disk. The size of the read cache can be tuned in t...