Search found 53125 matches
- Fri Dec 15, 2006 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Active stage custom exp job staus (0,1,2,3) refer to?
- Replies: 5
- Views: 1531
- Fri Dec 15, 2006 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not enough storage is available in the "QUERY_HEAP"
- Replies: 6
- Views: 2964
- Fri Dec 15, 2006 2:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: MS OLAP plug-in?
- Replies: 2
- Views: 832
There is nothing out of the box. You could write a plug-in stage, but it's probably not worth the effort, particularly if you already have a custom MDX. It might also be worth checking on what has been asserted by the "MS guy"; after all, if the product supports a CREATE CUBE statement, then surely ...
- Fri Dec 15, 2006 2:47 pm
- Forum: IBM QualityStage
- Topic: Transfer Error
- Replies: 9
- Views: 3048
- Thu Dec 14, 2006 10:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to get rid of warning trigger
- Replies: 10
- Views: 3074
There is a compilation option for job sequences that requires a warning message to be logged if a job under control finishes with a status other than OK - look on the job properties tab. Yes, I believe Kim is referring to a message handler. There will be a paper or video on DSXchange early next year...
- Thu Dec 14, 2006 10:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Validating email id field
- Replies: 13
- Views: 3643
- Thu Dec 14, 2006 8:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Bypassing notification activity in a sequencer
- Replies: 35
- Views: 9528
Why do you think one of his job titles is "analyst"? He could (should?) have pointed out that what's postulated is not even possible in a sequencer. It is, of course, possible in a job sequence. The only thing you can do in a sequencer is fire its output trigger(s) if any or all of its inputs have f...
- Thu Dec 14, 2006 8:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Standardization & Validation : Lame question
- Replies: 5
- Views: 1143
If the source is a database where NOT NULL constraints are enforced, then you do not need to check. If the source is, say, a text file (where NOT NULL constraints are meaningless) then you do need to check. It's not a lame question - it's a good question, and highlights the fact that DataStage serve...
- Thu Dec 14, 2006 7:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: to make the Transformer Wait for the file
- Replies: 7
- Views: 1433
This design will not open the file for reading until it has been written to and closed by the writer, therefore the Transformer stage will wait. -----> SeqFileStage -----> TransformerStage -----> But a modular design in which one job creates the file and another reads it, is easier to maintain. And ...
- Thu Dec 14, 2006 7:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: &.5.1 - Printer Segment
- Replies: 13
- Views: 5570
Read my last sentence again. Are you really being concerned about the "removing printer shared memory segment" message, or about something else? I see nothing untoward in the output of uv -admin -info in your post. You can install DataStage server wherever you like (except the root directory); that ...
- Thu Dec 14, 2006 7:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time Limits on jobs
- Replies: 21
- Views: 4794
If you can specify under exactly what conditions you want an abort to occur, then you could create another job (Job Control code) that polled for those conditions and issued appropriate DSStopJob() calls. Have you investigated a Terminator activity in a job sequence? That does much the same thing, b...
- Thu Dec 14, 2006 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: &.5.1 - Printer Segment
- Replies: 13
- Views: 5570
Prevent the abnormal terminations from occurring - train your developers to disconnect properly. As you may know, this message is informative - it's only a warning because it's an "unusual" event - does not occur every time. You will ALWAYS get this message from the uv -admin -info command if there ...
- Thu Dec 14, 2006 2:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting ExecuteCommand CommandOutput value in a sequencer
- Replies: 14
- Views: 4740
- Thu Dec 14, 2006 2:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: SAP APO
- Replies: 6
- Views: 1768
Might be worth asking your local SAP experts or SAP support provider.
Code: Select all
select * from datastage_users where sap_apo_clue > 0;
0 rows returned.- Thu Dec 14, 2006 2:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup stage key multiple matches handling
- Replies: 7
- Views: 13030
What Vincent suggested can be accomplished by removing duplicates from the reference Data Set. Of course it is sometimes legitimate to return multiple values (and thereby to generate more output rows than you have stream input rows), for example when performing a range lookup or a lookup against a s...