Search found 53125 matches

by ray.wurlod
Sun May 21, 2006 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem executing Server job
Replies: 9
Views: 1933

That error message can also occur if an attempt has been made to kill the job processes using operating system commands. There must be processes (resources) existing for Cleanup Resources to be able to work.
by ray.wurlod
Sun May 21, 2006 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts,write failed: Output file full, and no more outpu
Replies: 3
Views: 4900

The warning is only a warning; you have asked (implicitly perhaps) a Sequential File stage to preserve partitioning, but it must execute in sequential mode, and must therefore perform collection of data from all partitions into a single stream. This is not the problem. The error messages suggest tha...
by ray.wurlod
Sun May 21, 2006 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem executing Server job
Replies: 9
Views: 1933

Is there something else, perhaps another DataStage job, perhaps some other process. that has locked the Oracle table? Check with your DBA.
by ray.wurlod
Sun May 21, 2006 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: "dfloat" to result type decimal
Replies: 25
Views: 7776

It was just an observation. The first time I encountered this error message that was the cause. When next someone is searching I had hoped to cover the extra possibility.
by ray.wurlod
Sat May 20, 2006 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phonthom error
Replies: 11
Views: 2741

It may not be the first Transformer in your design, but it was the first one painted onto the design canvas. Comments in the code will tell you the name of the Transformer stage from which the code was generated.
by ray.wurlod
Sat May 20, 2006 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unlocking jobs
Replies: 17
Views: 6390

vsi wrote:Does it affect the working of Datastage if i clear the status of jobs? i guess i used option 11 and now not able to log in.

Clearing one job's status file, or even a few, will not block login. There is something else awry with your project. What message do you get when failing to log in?
by ray.wurlod
Sat May 20, 2006 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unlocking jobs
Replies: 17
Views: 6390

Only an upgrade or an updating of the account would make anything disappear from VOC, other than an explicit DELETE command. The project cleanup button (which has been removed from the Administrator client and from the DS.TOOLS menu) ought not to affect "Q" and "R" type entries in the VOC file. I su...
by ray.wurlod
Sat May 20, 2006 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: "dfloat" to result type decimal
Replies: 25
Views: 7776

The parallel Aggregator stage seems always to generate dfloat output for numeric input.
by ray.wurlod
Sat May 20, 2006 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XSLT Error (javax.xml.transform.TransformerException)
Replies: 2
Views: 1654

It's not an XSLT error. The error reported is dsjob: not found which means that your PATH environment variable does not include the DataStage bin directory.
by ray.wurlod
Sat May 20, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle NLS problem
Replies: 6
Views: 2622

Just set the NLS_LANG environment variable appropriately.
by ray.wurlod
Sat May 20, 2006 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: format string
Replies: 3
Views: 793

Code: Select all

Convert(@FM, " ", Cats(Cats(Reuse("(pre "), Convert("|", @FM, InLink.TheString)), Reuse(")"))
by ray.wurlod
Sat May 20, 2006 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pad zeros
Replies: 6
Views: 1289

You might like to investigate

Code: Select all

Oconv(TheNumber, "MR2")
by ray.wurlod
Sat May 20, 2006 2:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with mkdbfile
Replies: 3
Views: 1436

mkdbfile only creates the data portion. You need a second mkdbfile to create the dictionary portion. This should be named according to the convention <dir>/D_aaa.hash in your example. Ideally you should also populate the dictionary with the hashed file's metadata.
by ray.wurlod
Sat May 20, 2006 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

Or, to avoid the EVAL

Code: Select all

SELECT DS_JOBS WITH JOBNO MATCHING "1N0N" SAVING JOBNO TO 10
by ray.wurlod
Sat May 20, 2006 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IMPORT&EXPORT ERROR
Replies: 9
Views: 3820

Looks like you may have some orphaned components - you should never delete from UNIX, since it does not remove the VOC entries. Execute the command DS.CHECKER to search for and remove orphaned components, and let us know if that has fixed the problem. If you can get exclusive access to the project, ...