Search found 53125 matches
- Sat Jun 17, 2006 3:26 pm
- Forum:
- Topic: SmartHeap Library MEM_BAD_POINTER
- Replies: 6
- Views: 2595
- Sat Jun 17, 2006 3:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSCONTROLJOB
- Replies: 5
- Views: 1112
- Sat Jun 17, 2006 3:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: SAS Stage limit in DataStage
- Replies: 1
- Views: 1342
- Fri Jun 16, 2006 1:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: including reason of rejection of row in reject file
- Replies: 8
- Views: 2082
- Fri Jun 16, 2006 1:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: handling error of Unix script in DS Before-job subroutine
- Replies: 4
- Views: 2065
- Fri Jun 16, 2006 1:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Resize VOC file to type 30
- Replies: 3
- Views: 1461
- Fri Jun 16, 2006 1:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: re: occurs 0-200 times depending on clause in CFF stage
- Replies: 2
- Views: 1269
- Thu Jun 15, 2006 8:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator mis behave and slow down when we correct it
- Replies: 12
- Views: 4732
Did you try doing the conversion using a Modify stage? Was it a Transformer stage or a BASIC Transformer stage? A BASIC Transformer stage has a limit to the precision that can be represented, which may explain the rounding errors. Indeed, you can still get rounding errors with decimal[18,2] if, at s...
- Thu Jun 15, 2006 5:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sub-optimal Error
- Replies: 0
- Views: 816
- Thu Jun 15, 2006 5:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Scratch readRecord failed: read() failed: Stale NFS file han
- Replies: 1
- Views: 1485
Welcome aboard. It's bad practice to have your scratch disk resource on an NFS mount. This is because network latency can lead to exactly the problem you encountered - "stale NFS handle" is another way of saying that your connection is old. Always have scratch disk on local disk. If possible also ha...
- Thu Jun 15, 2006 5:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator mis behave and slow down when we correct it
- Replies: 12
- Views: 4732
Try using square brackets.
Code: Select all
DB_AMT:DECIMAL[18,2] = decimal_from_dfloat(DB_AMT) - Thu Jun 15, 2006 5:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Resize VOC file to type 30
- Replies: 3
- Views: 1461
You can not resize VOC while anything is active in that project. You would need to SETFILE from a different project. Whence did you get this suggestion? I disagree heartily with it. While it is true that VOC can be a dynamic hashed file, there is no great gain, and higher risk of corruption. Resizin...
- Thu Jun 15, 2006 5:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Call job on a different server to run from sequence
- Replies: 2
- Views: 1185
- Thu Jun 15, 2006 5:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 9i timestamp(6) feature and error ORA-01830
- Replies: 11
- Views: 6706
- Thu Jun 15, 2006 5:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Split a record into multiple basing on a condition
- Replies: 3
- Views: 1076
There may be no need to bring the separate streams together - database servers can support multiple connections. If they are all inserts, for example, with different keys, it doesn't really matter how many "clients" are doing the inserts - up to a certain limit, of course. This is one way to effect ...