Search found 53125 matches

by ray.wurlod
Thu Jun 22, 2006 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Into BD2 Table
Replies: 4
Views: 1097

I fear - without being able to check - that that's the way that mainframe jobs work. Try re-designing the job to check for the existence of the primary key, and directing your links accordingly. Only attempt an insert if the primary key does not exist; otherwise either perform an update or discard t...
by ray.wurlod
Thu Jun 22, 2006 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with performance
Replies: 2
Views: 676

It's not a "problem with performance" - it's a "problem with design".

Follow the suggestion that Klaus made and be pleasantly surprised - you are not unnecessarily processing (millions - 100) rows.

The secret of success in any performance tuning in computers is to avoid doing unnecessary work.
by ray.wurlod
Thu Jun 22, 2006 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Urgent question: How to dynamic set file names parameter
Replies: 9
Views: 2013

Etiquette Note We don't do "urgent" here. This is an all-volunteer site; no-one gets paid for posting. We post as and when we can. Some of us are asleep when your need is urgent, if indeed it really is. If you want urgent response, sign up with your support provider and learn the true cost of "urge...
by ray.wurlod
Thu Jun 22, 2006 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to Pervasive database
Replies: 4
Views: 1189

Does Pervasive have the ability to dump its tables in text-file formats? If so you could script that, run the script from DataStage, then process the text file.
by ray.wurlod
Thu Jun 22, 2006 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to export DS Project
Replies: 6
Views: 1885

More likely would be a need to re-index DS_JOBOBJECTS. Best is to re-index ALL. You need exclusive access to the project to run DS.REINDEX successfully.
by ray.wurlod
Thu Jun 22, 2006 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue
Replies: 7
Views: 1421

Re: performance issue

We tested the sql code on oracle DB its running fine. It seems their is some problem with datastage server. Any tips of how to find the problem? What has changed in the meantime? If the DataStage job has not been changed clearly it can not be the culprit. What is the total other load on the machine...
by ray.wurlod
Thu Jun 22, 2006 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Improper Datatype
Replies: 10
Views: 2131

Could be a BASIC Transformer stage in a parallel job; however the OP specified server job.

Re-compile your job. There WILL then be a file in RT_BP124 that you can inspect.
by ray.wurlod
Thu Jun 22, 2006 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Issues
Replies: 6
Views: 2794

Even though you know what you're doing, DataStage doesn't know that you know what you are doing, and still feels the need to warn you about possible conversion problems. You can not disable generation of these messages. You can, however, create message handlers to demote these messages to informatio...
by ray.wurlod
Thu Jun 22, 2006 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to increment surrogate key
Replies: 9
Views: 3845

The initial value must be obtained from somewhere, using select max(keyvalue) + 1 from table; which is a query that executes in sequential mode - no need for parallelism since it can only return one row. Do this in one job - perhaps even a server job - and capture the result into either a file or th...
by ray.wurlod
Thu Jun 22, 2006 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File
Replies: 5
Views: 3248

Technically you did, through inaction, define the final delimiter and other properties. These have to appear in the schema file so that the record layout is properly understood. The mere fact that you chose to accept default values for these properties doesn't affect this need. However, record delim...
by ray.wurlod
Thu Jun 22, 2006 12:46 pm
Forum: Site/Forum
Topic: Inactive DSXchange users.
Replies: 5
Views: 2678

Lots of folks just lurk and learn - maybe too shy or not confident enough to post. I don't think we can assume that 0 posts = inactive. Perhaps >0 posts but none in the past three years would be a better indicator. What would be the most appropriate process - a private message and/or email suggestin...
by ray.wurlod
Thu Jun 22, 2006 12:44 pm
Forum: Site/Forum
Topic: ToolXchange?
Replies: 4
Views: 2203

I don't think you'd get one on Wimpy budget. :lol:
by ray.wurlod
Thu Jun 22, 2006 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to increment surrogate key
Replies: 9
Views: 3845

You can not do this easily in one job. A better approach is to run an earlier job to get the next key value, then feed that as a job parameter to your main job. Both jobs can be run from a job sequence.
by ray.wurlod
Thu Jun 22, 2006 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Same job with different functions
Replies: 5
Views: 969

If it's never been run before, "append" will create the new file. Otherwise you can include a Nested Condition activity to determine whether to truncate the file before running the remainder of the Job activities. This will have two outputs (yes and no); the yes goes into, say, an Execute Command ac...
by ray.wurlod
Thu Jun 22, 2006 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing DB from DS routine
Replies: 6
Views: 1384

Why?!! You want to rewrite what DataStage already does? Why did you buy DataStage, then? There is a function library called the BASIC SQL Client Interface where DS BASIC routines can act as client programs to database servers, but it has one or two disadvantages, particularly the licensing cost of a...