Search found 53125 matches

by ray.wurlod
Wed Jun 14, 2006 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in oracle plugin
Replies: 8
Views: 2074

Hi Arnd/Kumar s, This is urgent fror me.Thats why i said asap. Thanks, sudhakar You can sign up with your support provider for premium service. Here we don't do "urgent" or "asap"; we are all volunteers who post as and when we can, without pay. If you need "urgent" you have to pay; that's how the r...
by ray.wurlod
Wed Jun 14, 2006 3:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller Jobs
Replies: 7
Views: 1188

Can you sketch out the logic of what you want to do a little more completely? As if it were a specification for a new (or offshore) developer.
by ray.wurlod
Wed Jun 14, 2006 3:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: if FileB is not empty propagate FileA
Replies: 33
Views: 4705

That's because the -print option was left off the find command. Therefore, whatever find finds is discarded. Therefore it can never match Arg1. Therefore Ans is always zero.
by ray.wurlod
Wed Jun 14, 2006 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load two diff text files using single sequential file stage
Replies: 23
Views: 3881

Are you ensuring that the file names are different? You are not permitted (by the operating system) to have two processes write to one file at the same time.
by ray.wurlod
Wed Jun 14, 2006 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MVS edition verses 7.x server jobs
Replies: 4
Views: 1032

Can the MVS edition of DataStage be installed on unix platform or does it require the MVS operating system only ? The so-called "EE MVS edition" only runs on the same platforms as EE, that is, UNIX (including Linux and USS) or Windows. When jobs are compiled COBOL and JCL are generated; these must ...
by ray.wurlod
Wed Jun 14, 2006 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load two diff text files using single sequential file stage
Replies: 23
Views: 3881

Start them at the same time, but with different invocation IDs. An invocation ID may be any string. The file name would need to be a job parameter, which would obviously have a different value in each invocation. However, if the files are not identical in record layout, multi-instance jobs are not t...
by ray.wurlod
Wed Jun 14, 2006 1:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine for control table/hash file it has read from
Replies: 4
Views: 1671

I'm not against reinventing the wheel (actually that's not true), but it's best if you have some experience before you do that, otherwise you'll end up with a triangular shaped rock.

Have you looked at the SDK routines UtilityHashLookup and UtilityRunJob?
by ray.wurlod
Wed Jun 14, 2006 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promote warning to fatal error
Replies: 7
Views: 2650

(1) No.
(2) This is "detect and escalate", not "promote".
by ray.wurlod
Wed Jun 14, 2006 1:23 am
Forum: IBM QualityStage
Topic: can we develop any stage by ourselves?
Replies: 4
Views: 1935

Keep in mind the provenance of the product; it was originally a mainframe-based application (that's why there were still eight character limits all over the place in version 6.0). You still can not create new stage types, and will not be able to do so under Hawk. There is a specific manual for the l...
by ray.wurlod
Tue Jun 13, 2006 10:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob Invalid arguments in script
Replies: 12
Views: 3197

The "back tick" method for using the output from one command is simply not available in a cmd shell (DOS). About all you could do is to echo the first part of the command into a BAT file, type your parameter file appending to that file, then echo the remainder of the command appending to that file. ...
by ray.wurlod
Tue Jun 13, 2006 10:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Issue
Replies: 17
Views: 3906

Yes.

You, too, can have it by the simple expedient of searching the forum.

It may be more efficient to use both phantom and &PH& and perform a search for all terms.

This probably should have been a new thread.
by ray.wurlod
Tue Jun 13, 2006 9:15 pm
Forum: IBM QualityStage
Topic: can we develop any stage by ourselves?
Replies: 4
Views: 1935

No. The only customization possible in QualityStage is the ability to create your own rule sets (and associated activities such as overrides, etc.). What are you seeking to achieve? It may be that QualityStage is not the appropriate tool. There is an API for creating DataStage stages - indeed, all s...
by ray.wurlod
Tue Jun 13, 2006 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate timestamp only if condition met.
Replies: 15
Views: 5951

What's wrong with actually supplying the high date value? It would be stored the same way!
by ray.wurlod
Tue Jun 13, 2006 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH FILE ABORT
Replies: 19
Views: 4525

Single-column hashed files are a great idea if all they have to be used for is to check for existence. Yes you can create them, and it is best practice to do so.
by ray.wurlod
Tue Jun 13, 2006 5:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob Invalid arguments in script
Replies: 12
Views: 3197

DSguru2B wrote:remove the quotes from 'type c:\parameters.txt' . I am not too familiar with DOS batch commands but basically you need an equivalent of echo. Does type do that?

No, echo does that.