Search found 53125 matches

by ray.wurlod
Mon Dec 05, 2005 8:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch job FOR LOOP
Replies: 3
Views: 1420

There's no End corresponding to the Then in the ReadSeq statement within the scope of the for..next loop. The End seems to occur after the Next statement. But the compiler was expecting to find End when it encountered Next, so it complained about not expecting the Next. Formatting your code would ha...
by ray.wurlod
Mon Dec 05, 2005 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Perfmon to monitor DataStage
Replies: 6
Views: 1547

DataStage processes are background processes and will therefore gobble whatever resources they can. Statistics gathering on the Tracing tab of the Job Run Options dialog can provide useful information about where the hot spots in an active stage are. The PerfMon question is really in the "how long i...
by ray.wurlod
Mon Dec 05, 2005 7:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrate from DataStage Server 7.1 to 7.5 or wait for 8?
Replies: 3
Views: 2019

Version 8 of DataStage is quite some time away - not before April 2006 at the very earliest. It's only just gone into beta testing.
by ray.wurlod
Mon Dec 05, 2005 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we get only job status???
Replies: 31
Views: 6898

Good catch. I've edited the original code.
by ray.wurlod
Mon Dec 05, 2005 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage scheduling
Replies: 9
Views: 3791

That is true. But you could schedule it for the 28th then use a routine to edit the AT queue entry appropriately.
by ray.wurlod
Mon Dec 05, 2005 7:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable the Job Run (Record) Limit
Replies: 1
Views: 558

It's only relevant for server jobs. Think about what it would actually mean for a parallel job!

You could always interpose a Head stage for testing.
by ray.wurlod
Mon Dec 05, 2005 7:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date validation
Replies: 3
Views: 1144

Can you please provide details of how you do this in parallel jobs?
by ray.wurlod
Mon Dec 05, 2005 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to divide a file into 8 parts
Replies: 10
Views: 3624

There's no other syntax. The File Set control file has a name that conventionally ends in ".fs". The individual data files reside on the disk resource specified for each processing node in the configuration file. Yes, I get up early - usually about 5:00 (too many years in the military!). 6:45 isn't ...
by ray.wurlod
Mon Dec 05, 2005 7:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage - Restrict Memory Usage option
Replies: 3
Views: 1471

In the current version there's no magic formula, apart from "don't overload the system". In the next major version (aka Hawk) there come some estimating tools, whether they get down to this level of detail remains to be seen. If you're not paging heavily sure, why not bump the memory some more? The ...
by ray.wurlod
Mon Dec 05, 2005 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to divide a file into 8 parts
Replies: 10
Views: 3624

You create a File Set by writing to a File Set stage.

Specify eight-way partitioning in a configuration file.

Run job.

Done.
by ray.wurlod
Mon Dec 05, 2005 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Stored Procedure in OCI Stage
Replies: 9
Views: 5020

Before you can call a stored procedure from DataStage you must first import the stored procedure definition (so that arguments may be checked).

Verify the syntax for CALL - sometimes curly braces are required.
by ray.wurlod
Mon Dec 05, 2005 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the Scheduler time from DS job???
Replies: 9
Views: 2488

That's why I specified "not been re-scheduled". If it has been you can simply read the AT queue.

Code: Select all

Call DSExecute("DOS", "AT", Output, Status)
by ray.wurlod
Mon Dec 05, 2005 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum value for an Integer
Replies: 1
Views: 1320

It's not possible. That's the rule for Integer.

Changing the data type is your only solution. This may require negotiation with the owner of the target table. All Oracle "integers" are stored as NUMBER, so you can increase the size of the number data type.
by ray.wurlod
Mon Dec 05, 2005 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we get only job status???
Replies: 31
Views: 6898

Look at the code. It returns -1 if the job can not be attached - that is, if the job name can not be found. The routine works as documented. The problem is somewhere with your job name. Job names must not only be correctly spelled they must also be correctly cased.
by ray.wurlod
Mon Dec 05, 2005 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling User Defined Oracle Function
Replies: 8
Views: 3093

Do you have any idea what these shared memory segments do? If not, how do you know that they're not doing something vital? For example, there is one which, if removed, will cause DataStage to halt. Every DataStage process has - needs - a shared memory segment (key 0xadebnnnn), plus there are a few o...