Search found 53125 matches

by ray.wurlod
Fri May 18, 2007 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Who is connected to a project?
Replies: 3
Views: 1920

From the operating system issue the command $DSHOME/bin/list_readu and pipe the result through grep filtering for the project name. Every connected client takes a shared lock project&!DS.ADMIN!& so that the Administrator client (or you) can rapidly determine whether there are any clients con...
by ray.wurlod
Fri May 18, 2007 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to capture error messages in DB2 API Stage
Replies: 7
Views: 8108

Welcome aboard.

Do you mean something like "treat warnings as fatal"?

I don't think this exists in the DB2 API stage. Is there some reason you're not using the DB2 Enterprise stage?
by ray.wurlod
Fri May 18, 2007 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projdef vars in Px transformer - compilation error
Replies: 3
Views: 1399

Can you post one of your expressions?

Please also verify that the default value for the job parameter (in the job properties) is $PROJDEF, not PROJDEF.

Does this occur if the default value is something else?

And, while you're testing, can you also try the default value $ENV ?
by ray.wurlod
Fri May 18, 2007 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mapping columns from a spread sheet
Replies: 6
Views: 2364

Without even opening the stage, right click and choose Propagate. Within the Transformer stage you can multi-select the input columns (click on the first, shift-click on the last) and do a single drag-and-drop. The column definitions from the spreadsheet you have, of course, previously imported into...
by ray.wurlod
Fri May 18, 2007 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic variable generation
Replies: 6
Views: 1432

Why not just use the parameter value as the invocation ID? Otherwise, call KeyMgtGetNextValue() to establish a sequence of unique invocation IDs.
by ray.wurlod
Fri May 18, 2007 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine error
Replies: 4
Views: 1515

To help future searchers, can you please identify what those changes were that fixed this problem, and mark the thread as Resolved?
by ray.wurlod
Fri May 18, 2007 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing in to a sequential file trhru routine
Replies: 22
Views: 8126

The code looks OK, albeit rather inefficient. For example, why not write a line at a time to the output file within the loop? You don't need to "clear" the output file - WriteSEQ is a destructive overwrite. If you want to be certain, use WeofSEQ immediately after opening. The line terminators are ap...
by ray.wurlod
Fri May 18, 2007 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValueConcurrent
Replies: 9
Views: 3347

affect
by ray.wurlod
Fri May 18, 2007 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help Required: Sequence Failure
Replies: 6
Views: 1496

Are the link to the sequencer from the 10 jobs being triggered on failure condition. i.e constraint as finished trigger next job and otherwise for sequencer. If so you can change the conditions to trigger sequencer if job aborts and trigger next job in all other conditions. This is a less satisfact...
by ray.wurlod
Fri May 18, 2007 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Repository Interface error
Replies: 9
Views: 5433

TRACE
TRACE ON
TRACE OFF
TRACE CLEAR
TRACE CLEAR Type1FileName
by ray.wurlod
Fri May 18, 2007 4:39 pm
Forum: General
Topic: Best way to process a list and do perform SQL one at a time
Replies: 14
Views: 5264

You should be passing just a value, not an assignment statement. Get rid of the "PN = ".
by ray.wurlod
Fri May 18, 2007 4:37 pm
Forum: General
Topic: Is anyone using DataDirect XML products with DataStage?
Replies: 10
Views: 2613

Wore out two copies of the vinyl LP, I think the CD is wearing out too! :cry:
by ray.wurlod
Fri May 18, 2007 4:34 pm
Forum: IBM QualityStage
Topic: Custom made rules
Replies: 1
Views: 1091

They should be co-resident with all the other rules in your Rules folder. Each rule set comprises a number of files. Each has the rule set name as (part of) its base name, and there are suffixes including ".CLS", ".DIC", ".TBL" and so on. Full details are in the User Guide. They should not have been...
by ray.wurlod
Fri May 18, 2007 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata API loading Data issue
Replies: 5
Views: 1568

Do all nodes have the same fastname?

If not, you need to set up your shared libary search path for DataStage processes on each machine mentioned in the (fastnames in the) configuration file so that all needed libraries are accessible.
by ray.wurlod
Fri May 18, 2007 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projdef vars in Px transformer - compilation error
Replies: 3
Views: 1399

Are you using the expression editor to build the expression in the Transformer stage? Environment variable job parameters should (do) work perfectly well in parallel Transformer stages. Can you post one of your expressions? If you're not using the expression editor, can you please do so and note whe...