Search found 53125 matches

by ray.wurlod
Fri Feb 09, 2007 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check column sorted
Replies: 7
Views: 1794

The Compare stage reports direction of difference between two inputs. To use this you'd need to generate a sequential key on two copies of the sorted Data Set (Column Generator stages) with an offset of 1 between the two copies, then compare based on matching that key.
by ray.wurlod
Fri Feb 09, 2007 3:07 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Error in PX
Replies: 8
Views: 5577

Ernie, is there some executable in a different directory for WISD than for all other jobs, and that directory is not in the user's PATH? That's what it appears to be, but I can't think which directory it might be.
by ray.wurlod
Fri Feb 09, 2007 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert function current Timestamp() into varchar
Replies: 2
Views: 1591

You need to specify a timestamp format string that incorporates the fractional second digits.
by ray.wurlod
Fri Feb 09, 2007 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BigInt To Integer conversion
Replies: 6
Views: 4866

The largest permissible int32 (Integer) value is 2^31-1, or 2,147,483,647.

Your generated number (3,000,000,000) is larger than this, hence the error.
by ray.wurlod
Fri Feb 09, 2007 2:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to develop parallel job
Replies: 4
Views: 1002

For small jobs server jobs are faster (finish more quickly). The startup cost of parallel jobs (even just starting the conductor process, composing the score, starting the section leader processes, distributing the score and starting the player processes - oh, and license checking) is an overhead th...
by ray.wurlod
Fri Feb 09, 2007 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script for Cleaning the Log Files
Replies: 21
Views: 5667

No I didn't. The asterisk is wrong. The dot was missing; I have edited my previous post to include it.
by ray.wurlod
Fri Feb 09, 2007 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to develop parallel job
Replies: 4
Views: 1002

No reason. Parallel jobs do give you the future flexibility to spread your processing over multiple CPUs in multiple machines (e.g. in a cluster or grid configuration) and to be able to change the number of partitions without needing to recompile or provide different parameter values, which you woul...
by ray.wurlod
Thu Feb 08, 2007 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Functions
Replies: 26
Views: 7014

In a BASIC Transformer stage only (or in a server job): If InLink.Product Matches "0X'V'1N0N0X" Then MatchField(InLink.Product, "0X'V'0N0X", 3) Else If InLink.Product Matches "0X'V-'1N0N0X" Then MatchField(InLink.Product, "0X'V-'0N0X", 3) Else ...
by ray.wurlod
Thu Feb 08, 2007 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer error
Replies: 3
Views: 1456

Have you read through all of that? Did you find an error anywhere in it? If so, what means have you tried to resolve your problem? Do you have runtime propagation (RCP) enabled?
by ray.wurlod
Thu Feb 08, 2007 11:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN,PLUGIN ISSUE
Replies: 21
Views: 10259

Data Source Names for ODBC are configured in a file called .odbc.ini for DataStage on UNIX. You also need an entry for the DSN in the uvodbc.config file in the project directory. You also need to be able to resolve the TNS name, unless you are using a wired ODBC driver.
by ray.wurlod
Thu Feb 08, 2007 11:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while running the siebel plug in stages
Replies: 3
Views: 1083

Please post the value of the environment variable LD_LIBRARY_PATH (or SHLIB_PATH or LIBPATH, depending on your UNIX variant), taken from the second event in a successful job run. Check that the parent directory of the library in quesion is in that search path.
by ray.wurlod
Thu Feb 08, 2007 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Filter records more then decimal(12,2)
Replies: 10
Views: 2284

Search the forum for a server routine called IsValid() which will allow you to verify whether each value is a valid decimal(12,2) value or not. Use this in the constraint expression in your Transformer stage.
by ray.wurlod
Thu Feb 08, 2007 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading data into Time Dimension
Replies: 14
Views: 4951

You can load the hashed file from your Time dimension table, and create the smart key (if required) during that process. Basically, however, all you need is a two-column hashed file with the date as its key and the corresponding Time dimension surrogate key value as its other column.
by ray.wurlod
Thu Feb 08, 2007 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check the value if it is not a CHAR
Replies: 5
Views: 2149

For something a little more esoteric search the forum for a server routine called IsValid() which allows you to check for particular data types.
by ray.wurlod
Thu Feb 08, 2007 11:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script for Cleaning the Log Files
Replies: 21
Views: 5667

1. DSD.RUN is the command DataStage uses to run server jobs. DSD.StageRun is the command DataStage uses to execute code generated by server Transformer stages. Files in &PH& with names ending in "trace" are from stage tracing. 2. Use the find command, filter on owner name, and exec the rm co...