Search found 53125 matches
- Tue Nov 28, 2006 1:29 pm
- Forum: Site/Forum
- Topic: Do you plan upgrading to the new 8 version (Hawk)
- Replies: 11
- Views: 6457
Most of my clients are risk-averse, and will not be early adopters. Even when they do, the majority are planning a goodly period of parallel running. This is just such a big change. Some of the FUD from IBM sales reps hasn't been helping either. One of my clients was informed that "server jobs would...
- Tue Nov 28, 2006 1:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trim Function in Modify Stage
- Replies: 21
- Views: 12414
My error. Should have been:
The default trimmable character is APT_STRING_PADCHAR which, unless you've changed it, is Char(0), not space.
Code: Select all
NewEmpname: nullable string[max=255]=string_trim[" "](Empname)The default trimmable character is APT_STRING_PADCHAR which, unless you've changed it, is Char(0), not space.
- Tue Nov 28, 2006 1:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Max number of columns readable thru' ODBC
- Replies: 2
- Views: 1348
- Tue Nov 28, 2006 1:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: is sorting before joining mandatory?
- Replies: 4
- Views: 2280
The Join stage requires its inputs to be sorted, so that it can employ an efficient memory management algorithm. If you don't specify sorted data the composed score will have tsort operators inserted on the input links so that the data will, in fact, be sorted. It is far better technique to retain c...
- Tue Nov 28, 2006 1:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convert Fixed Bin/Fixed Dec Data
- Replies: 4
- Views: 1299
- Tue Nov 28, 2006 1:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading multiple files of same pattern
- Replies: 5
- Views: 1549
- Tue Nov 28, 2006 1:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inserting a record to Target if Source SeqFile is Empty
- Replies: 2
- Views: 884
- Tue Nov 28, 2006 1:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to stop a sequencer normally
- Replies: 11
- Views: 2903
I doubt that it's possible using StartLoop and EndLoop activities, which is what you seem to be asking. The StartLoop activity only effects a counted loop or a "list of things" loop; it does not effect an uncounted loop, and this is where your proposed algorithm fails. I'm surmising that you also pr...
- Tue Nov 28, 2006 12:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Variables -Constants???
- Replies: 4
- Views: 1612
- Tue Nov 28, 2006 12:52 pm
- Forum: General
- Topic: Regd. Link Collector
- Replies: 3
- Views: 2277
Even without searching here, the manual (or online help) specifically states that the Link Colletor stage requires that inter-process row buffering be enabled. Since this is mutually exclusive with in-process row buffering (being chosen with option buttons), it follows that the source of your error ...
- Tue Nov 28, 2006 12:50 pm
- Forum: General
- Topic: do a sql union in oracle stage
- Replies: 3
- Views: 1934
- Tue Nov 28, 2006 12:46 pm
- Forum: IBM QualityStage
- Topic: QualityStage and diacritic characters
- Replies: 0
- Views: 1495
- Tue Nov 28, 2006 2:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting error in the sequencer job
- Replies: 5
- Views: 2037
Search is your friend. When you do, you will find out that some of the compilation of a job sequence takes place on the client machine, and that you probably do not have the requisite write permissions there.
- Tue Nov 28, 2006 2:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential File Stage
- Replies: 1
- Views: 715
- Tue Nov 28, 2006 2:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Sort
- Replies: 3
- Views: 1564
It is not possible to prescribe storage order in a hashed file, for exactly the same reasons it is not possible to do so in a database table. The database controls where records are stored. In the case of hashed files, it's the hashing algorithm. You can sort upon retrieval either by retreiving with...