Search found 53125 matches

by ray.wurlod
Sat Feb 16, 2008 12:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Job Number
Replies: 17
Views: 5062

0 NAME VARCHAR(20) NOT NULL PRIMARY KEY 1 READONLY VARCHAR(8) 2 OLETYPE VARCHAR(20) 3 CATEGORY VARCHAR(60) 4 DESC VARCHAR(60) 5 JOBNO VARCHAR(5) 6 JOBTYPEIND VARCHAR(5) 7 JOBID VARCHAR(20) Size limits on VARCHAR data types are not enfo...
by ray.wurlod
Fri Feb 15, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating dummy data between a range sequentially
Replies: 8
Views: 1769

Generate integers 1 through 8000 and divide by 100 downstream. The problem probably is related to internal storage of floating point numbers but I am unable (and, indeed, unwilling) to devote time to investigating more closely. As well, I'd probably need source code for the generator operator, which...
by ray.wurlod
Fri Feb 15, 2008 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add thousand-separator comma's to decimal field
Replies: 7
Views: 6869

You can - expensively in terms of transferring data between nodes - limit your BASIC Transformer stage to run on the conductor node using a node pool. Otherwise the parallel routine could operate "right to left" using Mod() function to identify each thousands component and build a string containing ...
by ray.wurlod
Fri Feb 15, 2008 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anyone got SCD stage to work in Susi Linux environment ?
Replies: 11
Views: 2169

You are including the parentheses with no space between the name and the left parenthesis? A space might cause the compiler (parser) to identify the function name as a variable.
by ray.wurlod
Fri Feb 15, 2008 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records are getting dropped from Transformer after Full Oute
Replies: 2
Views: 1201

Ensure that all columns in the Join stage are marked Nullable.
by ray.wurlod
Fri Feb 15, 2008 5:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rows to columns
Replies: 1
Views: 619

The problem may be in the "and so on" piece or in the order of execution of your stage variables or in the output link constraint expression.

Can you please post exactly how you have derived ALL your stage variables, this time enclosed in Code tags so it's clearer what you've done?
by ray.wurlod
Fri Feb 15, 2008 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to integrate job status into a table
Replies: 2
Views: 911

Do not attempt to obtain the status of the master job from its own job control "window". If you do that the status will always be "running". You could certainly do it from the job control code of a separate job, executed after the master job finishes, or you could do it in an after-job subroutine in...
by ray.wurlod
Fri Feb 15, 2008 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Job Number
Replies: 17
Views: 5062

There's more to DS_JOBS than is apparent from the file dictionary. And there is a relationship with DS_JOBOBJECTS to preserve. That's why we need to know exactly what you did - the actual commands used.
by ray.wurlod
Fri Feb 15, 2008 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDK routines and KeyMgtGetNextValue
Replies: 7
Views: 2281

No, it's the other way around, a 7.5x2 client talking to a 7.5.1A server. I have not had the opportunity to try with a 7.5.1A client talking to a 7.5.1A server but suspect that the same bug would be seen there also. Currently I am using 7.5.2 and the symptom does not occur.
by ray.wurlod
Fri Feb 15, 2008 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Root created and cant delete it
Replies: 9
Views: 4837

ROOT is a reserved name, and can not be used as a job name. This is undocumented, but even the visible portions of DS_JOBOBJECTS make it clear why it is so. You would need the same name for the job record and for its root (entrypoint) record. Duplicate primary keys are forbidden.
by ray.wurlod
Fri Feb 15, 2008 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: combing some columns have two identical rows
Replies: 1
Views: 969

Are you meant to add (for example what if one date had 1 in more than one row for the same column)? If not, what is the rule for combination? The approach, nonetheless, is to build the rows in a Transformer stage, outputting only when processing the last record in each group (date). You can identify...
by ray.wurlod
Fri Feb 15, 2008 4:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 6896

Actually using .\NUL as source is a Bad Idea - it will deliver an infinite amount of empty lines. This is a useful technique in scripting, but outside the current discussion. You can use a Transformer stage with a stage variable and a constraint of @INROWNUM = 1 to generate a single row. The Transfo...
by ray.wurlod
Fri Feb 15, 2008 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i handle large size in Datastage serveredition 7.1
Replies: 3
Views: 1048

Experiment with VarChar and LongVarChar data types rather than Text.
by ray.wurlod
Fri Feb 15, 2008 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATASTAGE WEB SERVICES PACK V7.5
Replies: 13
Views: 8671

Send money for free receipt.

The Web Services PACK is separately licensed.
by ray.wurlod
Fri Feb 15, 2008 2:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Job Number
Replies: 17
Views: 5062

Apart from "don't break it in the first place," you mean? This is going to be tricky. Most of the issues arise because DS_JOBS is no longer synchronized with DS_JOBOBJECTS. Can you try moving the jobs back whence they came, and see if they're OK again there? There are many internal references to job...