Search found 53125 matches
- Sat Feb 16, 2008 12:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Job Number
- Replies: 17
- Views: 5062
- 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...
- 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 ...
- 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
- 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
- Fri Feb 15, 2008 5:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rows to columns
- Replies: 1
- Views: 619
- 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...
- Fri Feb 15, 2008 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Job Number
- Replies: 17
- Views: 5062
- Fri Feb 15, 2008 5:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SDK routines and KeyMgtGetNextValue
- Replies: 7
- Views: 2281
- 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
- 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...
- 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...
- 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
- 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
- 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...