Search found 53125 matches

by ray.wurlod
Wed Jul 27, 2005 9:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple rows return lookup- justify
Replies: 1
Views: 820

There might be occasions when the date constraint fails to limit the return to a single row. For example, a patient can be admitted to hospital, or visit a doctor, more than once on the same day. If you're collecting "health service provisions" for that particular patient, constraining to a single d...
by ray.wurlod
Wed Jul 27, 2005 9:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Locked
Replies: 2
Views: 830

Did you list locks for ALL jobs? You will see locks held by defunct processes if you choose this option, rather than extant jobs (which have current processes associated with them). The job name will be in the report.
by ray.wurlod
Wed Jul 27, 2005 9:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using .netrc with an FTP shell script
Replies: 5
Views: 2606

I vaguely recall that FTP will not permit redirection of the password. The way that DSExecute works (and, I assume, the way that the Execute Command activity works), is to fork a child process. Therefore you have redirection. You might like to try a Routine Activity, in which your routine uses PERFO...
by ray.wurlod
Wed Jul 27, 2005 9:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob showing status code = 1
Replies: 16
Views: 7497

Check out the readme file for version 7.5, where it talks about the job's exit status being available on stderr.
by ray.wurlod
Wed Jul 27, 2005 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: changins parameters to sequence
Replies: 6
Views: 1072

The dummy job that you configure contains the union of all job parameters in the project. When you change job names in the Job Activity, that Job Activity magically causes non-relevant job parameters to disappear. I keep the "master" job activity in a Job Sequence of its own, and copy from there to ...
by ray.wurlod
Wed Jul 27, 2005 9:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Jobs from Routines
Replies: 5
Views: 1661

Ascential have cunningly hidden job control documentation in the Server Job Developers Guide
That's because a job sequence is just a special case of a server job. :D
by ray.wurlod
Wed Jul 27, 2005 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Error: (destConcField->fixRunAnchor_f)
Replies: 10
Views: 6342

That's a stack trace that lets an engineer see how you got the error. The error was in transfer_rep.C and in a structured data type (the fixRunAnchor_f element of destConcField). Presumably this occurred in a (parallel) Transformer stage. There's nothing in that error message that helps to diagnose ...
by ray.wurlod
Wed Jul 27, 2005 9:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substrings functionality in Parallel
Replies: 8
Views: 3602

Isn't it the same as in server jobs? For example

Code: Select all

Convert("abcdef", "xxxxxx", InLink.TheString)
by ray.wurlod
Wed Jul 27, 2005 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to edit Generated OSH
Replies: 6
Views: 1862

There's no good reason to edit the generated OSH. The correct solution is to get your job design right, so that it generates correct OSH.

Even if you did, recompiling the job will regenerate whatever OSH it will, rendering your editing efforts futile.
by ray.wurlod
Wed Jul 27, 2005 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difficult situation
Replies: 3
Views: 1415

The most difficult situation I ever faced was an incompetent junior developer. The amount of time spent coaching and mentoring was about five times what I would have needed to do the job. The solution was to fire the incompetent person (a contractor who had claimed to be competent), with the recomme...
by ray.wurlod
Wed Jul 27, 2005 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connect Issues
Replies: 3
Views: 1295

The user ID in the DataStage job used to authenticate to DB2 is the one that requires the privileges to system tables that I mentioned before. You are right in your assumption, but did not address the question of whether the DB2 user has sufficient privilege to system tables to import table definiti...
by ray.wurlod
Wed Jul 27, 2005 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to capture the link info from server routine
Replies: 4
Views: 1688

Lose the code. It's horribly inefficient, re-creating the output file for each row processed! Do it all in a job, with an Aggregator stage as Craig suggests. Is this really a parallel job, in which you're trying to use DataStage BASIC code? What kind of a routine is it (transform function, before/af...
by ray.wurlod
Wed Jul 27, 2005 9:10 pm
Forum:
Topic: New to metastage
Replies: 3
Views: 1704

MetaStage is a product of huge complexity. You simply can not use it sensibly out of the box. You MUST get some training first. Seriously.
by ray.wurlod
Wed Jul 27, 2005 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge Stage
Replies: 9
Views: 2595

Check with your support provider.

Does this happen with every Merge stage you use? If so, it could be that you lack write permission in the temporary directory (which you specify in the stage properties).

Or it could be a problem within one of those temporary files.
by ray.wurlod
Wed Jul 27, 2005 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: changins parameters to sequence
Replies: 6
Views: 1072

Create one Job Activity that runs a job with all possible parameters, and set these. Copy this Job Activity and paste it as much as you like.