Search found 53125 matches

by ray.wurlod
Fri Oct 13, 2006 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating a report based upon values of output columns
Replies: 1
Views: 946

Compile in trace mode (check box on job properties window). DataStage will generate precisely this report as the trace.
by ray.wurlod
Fri Oct 13, 2006 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate Column value
Replies: 12
Views: 3664

There is no lookahead logic possible unless you use two Transformer stages. You do the stage variable things in the first Transformer stage, pass all the results plus original source data to the downstream Transformer stage, and effect the comparison and calculations therein.
by ray.wurlod
Fri Oct 13, 2006 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Diff b/n stages....
Replies: 3
Views: 1312

Spelling, among other things.
by ray.wurlod
Thu Oct 12, 2006 11:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle EE Update issue
Replies: 5
Views: 1510

What do you mean by "updating on a non-key value"? Are you using user-defined SQL?
by ray.wurlod
Thu Oct 12, 2006 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Taking backup using after job subroutine
Replies: 9
Views: 1909

... unless NewFileName were the pathname of a directory. :wink:
by ray.wurlod
Thu Oct 12, 2006 9:17 pm
Forum:
Topic: Importing Orchestrate schema definitions
Replies: 3
Views: 1441

No.

You can certainly use orchdbutil to view the record schema (or read the same directly from a schema file), but that does not get it into the DataStage Repository.
by ray.wurlod
Thu Oct 12, 2006 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Required Proj Name to a AutoSys job
Replies: 4
Views: 1554

The reason, if you think about it, is obvious. Unlike DataStage clients, dsjob is not connected to any particular project; it's just out there in the operating system. So you have to inform it in which project the job in question resides. The same job name might exist in more than one project (for e...
by ray.wurlod
Thu Oct 12, 2006 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Allowing multiple instances when it is not necessary
Replies: 6
Views: 1961

Not a great deal of value for parallel jobs (this IS the parallel forum) where it's just as easy to throw a configuration file with more nodes into the mix.
by ray.wurlod
Thu Oct 12, 2006 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence design
Replies: 5
Views: 1812

Control whether job activity A executes with a preceding Nested Condition activity that checks A's finish time (extracted, perhaps, in an upstream Routine activity). If it's the same date as today, bypass job activity A. Routine ---> Nested Condition ------> Job A ------> | Any Sequencer ---> Job B ...
by ray.wurlod
Thu Oct 12, 2006 9:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job is being Aborted -- showing Not enough space
Replies: 14
Views: 6497

Simple economics: supply and demand. Either demand fewer resources or supply more. Definitely not "silly" in any sense. There IS a hardware solution.
by ray.wurlod
Thu Oct 12, 2006 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing arguments to the stored procedure in DS
Replies: 5
Views: 2157

Import the Stored Procedure definition into DataStage. This will give you the columns corresponding to its arguments.

Call the stored procedure (from an ODBC stage, etc., or from a Stored Procedure stage).
by ray.wurlod
Thu Oct 12, 2006 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ITAG solution
Replies: 7
Views: 2035

It's the technology that permits multiple versions of DataStage Engine to co-exist on one box. The "instance tag" referred to is the first three digits of shared memory keys, for example 0xadeca000 has an itag of "ade".
by ray.wurlod
Thu Oct 12, 2006 8:55 pm
Forum:
Topic: Importing Orchestrate schema definitions
Replies: 3
Views: 1441

Not in version 7.5. Maybe in the next version.
by ray.wurlod
Thu Oct 12, 2006 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Allowing multiple instances when it is not necessary
Replies: 6
Views: 1961

Ultimately the reason is that multi-instance capability did not exist in version 1.0, and the default has never been changed.

My personal view is that enabling multi-instance unnecessarily introduces an unwanted level of complexity, even if it's only a small level.
by ray.wurlod
Thu Oct 12, 2006 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job performance
Replies: 9
Views: 2008

The larger the SQL Server table, the longer updates take. Use the bulk loader to append new rows. The problem is not in DataStage.