Search found 53125 matches

by ray.wurlod
Thu Sep 13, 2007 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installing GenHTML -- trouble with JobReport routine
Replies: 8
Views: 3444

The first argument is the return value. Then there are five input arguments. Total = six. Can't load subroutine errors usually result from their not having been compiled and cataloged. Use the multi-compile tool to compile all the routines in the project. Or at least all the ones in the "Kim" catego...
by ray.wurlod
Thu Sep 13, 2007 10:31 pm
Forum: IBM QualityStage
Topic: Trying to add an override
Replies: 5
Views: 2369

Your first post stated "override". If it's the PAT file, you need to check that you have not allowed the previous pattern handler to fall through into yours, or yours to fall through into the subsequent pattern handler.
by ray.wurlod
Thu Sep 13, 2007 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Assign Seq No.s to Invoice
Replies: 22
Views: 6188

Sort by Inv and Rec Type. The rest follows easily, particularly if you have the Sort stage generate Key Change column.
by ray.wurlod
Thu Sep 13, 2007 3:16 pm
Forum: General
Topic: Transformer code evaluation
Replies: 1
Views: 1316

Write a little test bed in C (C++) to invoke your routine.
by ray.wurlod
Thu Sep 13, 2007 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in conversion logic
Replies: 4
Views: 1057

In a fixed-width format file any representation of NULL must have the same number of characters as the field in which it occurs. Your Null Field Value property is set to "" for a Char(13) field. What you actually require is a value with 13 characters in it ro represent NULL - perhaps 13 space charac...
by ray.wurlod
Thu Sep 13, 2007 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while sorting
Replies: 4
Views: 1480

The Change Capture stage (which is what I must assume CC_delta to be, since you omitted to provide this information) requires its inputs to be sorted by the Change Key columns. Does your upstream sort provide this? The message suggests not. Put explicit Sort stage into your job design, on the inputs...
by ray.wurlod
Thu Sep 13, 2007 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Pattern problems !
Replies: 11
Views: 2782

With File Pattern try using a job parameter for the directory part of the pathname, for example #jpFileDir#/*.txt

The behaviour of the File Name Column property (to return the complete pathname of the file) is as documented.
by ray.wurlod
Thu Sep 13, 2007 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 7.5 Installation problem
Replies: 2
Views: 1792

Please post how this problem was resolved.
by ray.wurlod
Thu Sep 13, 2007 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance difference when reading data from dataset/table
Replies: 3
Views: 1260

Build some benchmark tests. For example,

Code: Select all

SeqFile ---> Copy

Use this to time how long you need to read the file with and without multiple readers per node.
Then experiment with Data Set. Experiment with Lookup vs Join vs Change Capture stages.
by ray.wurlod
Thu Sep 13, 2007 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Categories
Replies: 9
Views: 1741

Job Categories are separate records in DS_JOBS beginning with \\\. For example, to delete the category MyJobs\LoadHash you could execute DELETE FROM DS_JOBS WHERE NAME = '\\\MyJobs\LoadHash\'; It might be worth while to check first that the category is empty. SELECT CATEGORY, COUNT(*) AS ITE...
by ray.wurlod
Thu Sep 13, 2007 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How could I get current parameter value from unix command
Replies: 9
Views: 2099

Of course you can. The value from -jobinfo is only where -logsum starts; specify a later end timestamp with -logsum, then parse off the first entry.
by ray.wurlod
Thu Sep 13, 2007 2:39 pm
Forum: General
Topic: Cannot open Executable Job file RT_CONFIG319
Replies: 9
Views: 15358

Please post the resolution, because you have marked the thread as Resolved.
by ray.wurlod
Thu Sep 13, 2007 2:37 pm
Forum: General
Topic: Newprojects on DS Box not working properly
Replies: 1
Views: 1416

Welcome aboard. You really do need to be more precise. "Not working properly" is not enough information for diagnosis. What method is used to create the new project? Does this complete successfully? What is in the &COMO& directory in the new project's directory? When job's don't run, is anyt...