Search found 53125 matches

by ray.wurlod
Thu Dec 28, 2006 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading flat file problem
Replies: 17
Views: 4184

Check the format tab again. Make sure that the delimiter is comma. Then check the stage properties, and make sure that the line terminator is properly specified. Re-import the table definition if necessary, and click Load on both the Format and Columns tabs to resynchronize things.
by ray.wurlod
Thu Dec 28, 2006 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected token error in Db2 OS390 Platform
Replies: 5
Views: 1961

The space is for the sign. For example, -3.3 and +3.5 are valid decimal numbers, as is 3.2.
by ray.wurlod
Thu Dec 28, 2006 6:10 am
Forum: General
Topic: Error importing a job in the project
Replies: 14
Views: 8012

Not "best", essential. If you don't have exclusive access to the project, the reindexing process will invalidate the indexes, but not be able to rebuild them successfully.

Other users can be using other projects, but you MUST have exclusive access to any project you are re-indexing.
by ray.wurlod
Thu Dec 28, 2006 6:08 am
Forum: General
Topic: Load from DataStage to SAP
Replies: 8
Views: 3253

It's part of DataStage, but separately licensed. So you need to buy it from your vendor.
by ray.wurlod
Wed Dec 27, 2006 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simulating restartability
Replies: 13
Views: 3167

"Stopped by operator" is not a status that is amenable to restart. You need to cause one of the jobs to abort - not the same as being stopped. Feed it some duff data.
by ray.wurlod
Wed Dec 27, 2006 9:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing columns
Replies: 5
Views: 1636

Define "match by 75%". Sounds like the kind of probabilistic match that QualityStage (perhaps invoked through a QualityStage plug-in stage in your DataStage job) is ideally suited to do.
by ray.wurlod
Wed Dec 27, 2006 7:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding DSRUNJOB JOBCONTROL SUBROUTINE
Replies: 22
Views: 6430

Source code is provided for all SDK routines. Examine the source code yourself.
by ray.wurlod
Wed Dec 27, 2006 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error Default node pool empty
Replies: 2
Views: 1507

How do the configuration files differ between the two servers? Did you ever run in a multi-node configuration in the development environment?
by ray.wurlod
Wed Dec 27, 2006 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how/ where to find reason for reject records
Replies: 4
Views: 1587

There is only one reason for import failure when using a Sequential File stage. That reason is that the row does not match the record schema specified for the stage's output link. The remaining diagnosis is up to you - the single column on the reject link is a Raw string (VarBinary). You can view it...
by ray.wurlod
Wed Dec 27, 2006 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom and Zombie process
Replies: 3
Views: 1971

"Phantom" is DataStage terminology for "background process". You can trace the history of this usage back through UniVerse, Prime INFORMATION, PRIMOS, back to Pick O/S. "Zombie" is a UNIX term, describing a process - typically a background process - that is prevented from being killed (or even from ...
by ray.wurlod
Wed Dec 27, 2006 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple ODBC stages on one layout
Replies: 5
Views: 1131

Ultramundane makes a good point. But "it's not good practice" is not the reason for splitting extraction from the other phases; there is a good reason (limited time window) in that case. I still believe that it's the right thing to do to challenge these vague assertions. Be like a young, wide-eyed c...
by ray.wurlod
Wed Dec 27, 2006 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performence issue in transformer
Replies: 2
Views: 1011

We also don't know what version of DataStage you are using. "They" made some performance improvements in the Transformer stage at, I believe, version 7.5.1A.
by ray.wurlod
Wed Dec 27, 2006 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with the Sequencer
Replies: 15
Views: 4732

I can't see how you can have a "Problem with the Sequencer". All a Sequencer does is make an "any or all" decision as to whether its inputs have fired.

The term you wanted was Job Sequence.
by ray.wurlod
Wed Dec 27, 2006 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding DSRUNJOB JOBCONTROL SUBROUTINE
Replies: 22
Views: 6430

DSRunJob() function can not be used in the way proposed. However there is an SDK function called UtilityRunJob() that can be so used.

But do you really want to run a DataStage job for each row processed by your main job?

If so, do not complain about rows/sec. It will be abominable.
by ray.wurlod
Wed Dec 27, 2006 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decimal to varchar
Replies: 4
Views: 1721

Data source is specified as mainframe, we assume pushed to your DataStage server machine. Server jobs have no internal data types, so within the job the decimal number is simply a string of characters. That is why all you need to do is specify it as VarChar on the output link of a Transformer stage ...