Search found 53125 matches

by ray.wurlod
Fri Jun 03, 2005 5:14 pm
Forum: General
Topic: Exception Handler Issue
Replies: 7
Views: 3279

Status 2 (finished (see log)) is not counted as a failure. It is not handled by the Exception Handler. Therefore you need to code your own design. What do you want to do in these cases? One suggestion is to set up each Job Activity with multiple Triggers. OK and Warning go through an Any sequencer a...
by ray.wurlod
Fri Jun 03, 2005 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: any study material except manuals
Replies: 2
Views: 880

If you enrol in the training classes - some of which can be delivered electronically - you get proper training manuals, with worked examples. I personally believe that instructor led training is preferable for DataStage, since you can get immediate feedback if you begin to do anything that won't wor...
by ray.wurlod
Fri Jun 03, 2005 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Boosting the Performance of the job
Replies: 8
Views: 2181

Your SQL query includes a correlated subquery; that's probably the main culprit. Correlated subqueries must be executed for every row of the outer query; you are executing 380001 queries in the database. Create a job that runs this query into a Peek stage, and time just the query. Seek ways to write...
by ray.wurlod
Fri Jun 03, 2005 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter Stage Versus Switch Stage?
Replies: 1
Views: 1618

There are two main differences, and probably some minor ones as well. The two main differences are as follows. The Filter stage can send one input row to more than one output link. The Switch stage can not - the C switch construct has an implicit break in every case . The Switch stage is limited to ...
by ray.wurlod
Fri Jun 03, 2005 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort when Reject occurs during Upsert
Replies: 6
Views: 2208

:lol:
There's always the BASIC Transformer stage - acceptable in this case because the Sequential File target has to be sequential anyway, so collection of the Data Set must occur. The BASIC Transformer stage could have its "abort after rows" property set to 1.
by ray.wurlod
Fri Jun 03, 2005 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failover Handling in MPP setups
Replies: 6
Views: 2294

It's not that simple. (It never is.) Your job designs need to be constructed so that they preserve enough knowledge to be able to restart, maybe even to restart part way through. This necessarily involves landing that information to disk, and it needs to be available everywhere (perhaps a File Set w...
by ray.wurlod
Fri Jun 03, 2005 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate name registration
Replies: 4
Views: 2152

Thanks, Daniel. I should have thought to ask about operating system patches - these are the bane of any programmer's existence, particularly when "they" move or rename libraries on which one's code depends.
by ray.wurlod
Fri Jun 03, 2005 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communications
Replies: 3
Views: 1913

RT_SCTEMP is a directory in the project in which various files used by PX reside, primarily the named pipe (or "fifo") files used for communication. Check that you have read, write and execute access to the RT_SCTEMP directory. Check that the command for creating named pipes (either mknod or mkfifo ...
by ray.wurlod
Fri Jun 03, 2005 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View Data before Save
Replies: 4
Views: 1354

Any time "check project is installed correctly" pops up, suspect that the repository indices have become out of date, and DS.REINDEX ALL.
by ray.wurlod
Fri Jun 03, 2005 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Redbrick Bulk load problem
Replies: 3
Views: 918

Are any warning messages in the DataStage job log? For example, the parent directory of rb_tmu may not be in your PATH environment variable. Check the second logged event for the job to see the values that were assigned to environment variables.
by ray.wurlod
Fri Jun 03, 2005 6:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write column headers to out put
Replies: 12
Views: 4271

Luk wrote:is it possible to get column names autoamaticaly (without writing their names manualy from keyboard)??
In a Pivot stage, there is no legal way. Unless you know how to extract column names from the metadata in the Repository, there is no available mechanism.
by ray.wurlod
Fri Jun 03, 2005 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to insert date in oracle
Replies: 11
Views: 4017

Maybe it's just your typing, but 20041231 is not a valid date (in ANY format), which might explain why you're having a problem. Certainly you can convert a valid date in YYYYMMDD format into internal format using Iconv(TheDate, "DYMD") , and convert this into any required external ...
by ray.wurlod
Thu Jun 02, 2005 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to insert date in oracle
Replies: 11
Views: 4017

What stage type are you using? Have you set the Data Element for the JOIN_DATE column? Is it generated or user-written SQL? What is the data type of both columns? Did you import the table definition and use the imported table definition? All of these factors affect the answer.
by ray.wurlod
Thu Jun 02, 2005 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Sequencer: Attempting to Cleanup after ABORT raised
Replies: 7
Views: 1419

I also was surprised at the report of an empty "from previous run..." event, but let it go through to the catcher. But it is why I suggested explicitly looking in &PH&.
by ray.wurlod
Thu Jun 02, 2005 7:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Sequencer: Attempting to Cleanup after ABORT raised
Replies: 7
Views: 1419

I never guarantee that it will be there - always use words like "may" or "should", because sometimes it's not there. Are there any preceding warnings? Is there anything to be found for this run in the &PH& directory (a subdirectory in your project) pertinent to the failure?