Search found 53125 matches

by ray.wurlod
Thu Jul 22, 2010 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing value through Job Controller
Replies: 8
Views: 2385

Variable names beginning with "$" are not supported. To extract the value of an environment variable job parameter call DSGetParamInfo() with InfoType argument DSJ.PARAMVALUE.

Test the value of ErrCode after DSSetParam() returns. A negative integer indicates a problem of some kind.
by ray.wurlod
Thu Jul 22, 2010 7:53 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Error in the response of a webservice
Replies: 9
Views: 4803

You have a data type CHAR in your data, which DataStage has padded with the default string pad character 0x00 because of how the environment variable APT_STRING_PADCHAR has been set.

Either change the data type to VARCHAR and trim it, or specify " " as the pad character for CHAR data type.
by ray.wurlod
Thu Jul 22, 2010 7:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group outputs empty string value
Replies: 1
Views: 1210

Welcome aboard.

Please tell us how your Aggregator stage properties are set up, and how the input data are partitioned and sorted.
by ray.wurlod
Thu Jul 22, 2010 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to catch the path of a file
Replies: 1
Views: 747

Welcome aboard.

Use a job sequence. Have an Execute Command activity execute the find command. Its output is available through an activity variable that can be interrogated in downstream activities.

Don't forget to code for the possibility that the file is not found at all.
by ray.wurlod
Thu Jul 22, 2010 7:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup failure not passing NULL
Replies: 20
Views: 9322

Make the key column nullable.

"Key" here does not mean primary key, it means "search key" and will return a NULL if the lookup fails. So it has to be nullable.
by ray.wurlod
Thu Jul 22, 2010 7:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Suppression and migrating jobs to diffenet environme
Replies: 11
Views: 4091

Local message handlers are in the msh files. Global (named) message handlers are in the directory Arnd mentioned. You can migrate the files - they are pure text. The main issue is getting the correct msh file into the correct job SC directory on the target. I believe istool is better at picking thes...
by ray.wurlod
Thu Jul 22, 2010 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify date_from_julian_date
Replies: 17
Views: 7891

UniVerse - and therefore DataStage server jobs - use a base date (day 0) of 1967-12-31.
by ray.wurlod
Thu Jul 22, 2010 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pruning aLookup Data Set
Replies: 1
Views: 638

Delete and re-populate.
by ray.wurlod
Thu Jul 22, 2010 6:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Controlling the data flow between the stages in same job.
Replies: 15
Views: 6784

Please wrap your "ASCII art" in Code tags. It makes it easy to read.
by ray.wurlod
Thu Jul 22, 2010 6:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TD Enterprise Stage Script
Replies: 2
Views: 1239

(1) Yes.
(2) Which part of "internally" is unclear?
by ray.wurlod
Thu Jul 22, 2010 6:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to primavera, sap, ariba, and maximo from DS
Replies: 2
Views: 1455

Have DataStage create the XML files that Maximo consumes.
by ray.wurlod
Thu Jul 22, 2010 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database inserts and updates with datastage
Replies: 3
Views: 3859

You need to generate a row to have DataStage trigger the insert. Unless you want to generate a dummy column that will also be inserted, I feel it's just as easy to generate the date. You MUST have two jobs if you are using parallel jobs. Blocking operations (writing to and reading from the same stag...
by ray.wurlod
Thu Jul 22, 2010 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TDMload stage error:Bad keyword in the IMPORT command
Replies: 2
Views: 1682

Welcome aboard.

The error has come from the Teradata MLoad stage, in particular from the script that it has generated. Please verify that all settings in this stage are correct.
by ray.wurlod
Thu Jul 22, 2010 6:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing value through Job Controller
Replies: 8
Views: 2385

Neither - it's the handle to the job, allocated by an earlier DSAttachJob() call.
by ray.wurlod
Thu Jul 22, 2010 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why use server job?
Replies: 18
Views: 4987

I have one customer using only server jobs (multi-instance, admittedly) to process HUGE volumes of data in near real time. They also use row buffering to great advantage. Server jobs will not be going away, for several reasons foremost among which is that sequences are server jobs. Another set of re...