Search found 53125 matches

by ray.wurlod
Mon Oct 20, 2008 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Add Complete Functionality
Replies: 2
Views: 2121

See also these routines for other possibilities.
by ray.wurlod
Mon Oct 20, 2008 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mutex error
Replies: 6
Views: 1798

I don't think the IPC stage helps in this design, because the Link Collector creates a process for itself and therefore uses inter-process row buffering necessarily. I would recommend removing this stage from the job design.
by ray.wurlod
Mon Oct 20, 2008 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem achieving calculation in a transformer stage
Replies: 1
Views: 2332

Format is only relevant for display; the decimal placeholder character is not actually stored. However, it is important in calculations. If you are using code page 1252 then you must use "." as the decimal character, because that's the defined decimal placeholder character for the "US English" local...
by ray.wurlod
Mon Oct 20, 2008 2:39 pm
Forum: General
Topic: where the job logs getting stored
Replies: 11
Views: 3447

By doing so you lose any job log purge settings you may have had.
by ray.wurlod
Mon Oct 20, 2008 2:36 pm
Forum: Data Integration
Topic: Automatic way to integrate the Feed's from source system
Replies: 3
Views: 9438

No, that's sufficient. Use a Wait For File activity in a job sequence that waits for the trigger file to appear, then whatever else you need is downstream of that in the job sequence.
by ray.wurlod
Sun Oct 19, 2008 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: link sort and external sort
Replies: 3
Views: 1650

Not until you are more specific about what you mean by "external" sort.

The other three (input link sort, Sort stage and inserted sort) all use the same tsort operator.
by ray.wurlod
Sun Oct 19, 2008 8:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp Stage
Replies: 7
Views: 4891

Please compare your BuildOp code with the code generated by compiling the Transformer stage. Did you do anything differently?
by ray.wurlod
Sun Oct 19, 2008 6:26 pm
Forum: General
Topic: Updating a record in sequential file
Replies: 6
Views: 1660

So does using the ODBC driver for text file, with much less hassle.
by ray.wurlod
Sun Oct 19, 2008 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Commit
Replies: 6
Views: 1600

Define your metric of "performance". Without that who can say whether "performance" will reduce (whatever "reduce" means in this context)?
by ray.wurlod
Sun Oct 19, 2008 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp Stage
Replies: 7
Views: 4891

Why do you think that a Build stage that performs exactly the same task as a Transformer stage would run at any different speed?
by ray.wurlod
Sun Oct 19, 2008 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS processes, nodes and operators - Links
Replies: 1
Views: 746

Hereis probably the best. You probably also need to lay your hands on the Orchestrate manuals, which can be had for the asking from your support provider.
by ray.wurlod
Sun Oct 19, 2008 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After job aborting or fail how to get next values
Replies: 8
Views: 1865

Yes/no/maybe. Remember that each Transformer stage instance (there are four if you are running in a four node configuration) keeps its own, separate, count.
by ray.wurlod
Sun Oct 19, 2008 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage ,Can not pass job parameters
Replies: 11
Views: 2428

If it's VarChar ALL of the values in the IN list must be quoted in single quotes.
by ray.wurlod
Sun Oct 19, 2008 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job exists in Director but not in Designer repository
Replies: 10
Views: 2706

The table names are different too, and there are hundreds of them. No documentation appears to be available.
by ray.wurlod
Sat Oct 18, 2008 4:48 pm
Forum: General
Topic: Updating a record in sequential file
Replies: 6
Views: 1660

By "hash" I assume you mean "hashed file". Your "solution" could also be implemented using a database table, but it rather defeats the purpose expressed in the original question, does it not?