Search found 53125 matches
- Fri Sep 01, 2006 3:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: nls_read_delimited()
- Replies: 1
- Views: 1670
- Fri Sep 01, 2006 3:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DS Installation
- Replies: 13
- Views: 4532
- Fri Sep 01, 2006 3:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: List of JobNames from a Sequnce
- Replies: 11
- Views: 4286
- Fri Sep 01, 2006 2:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning while importing metadata from DB2
- Replies: 10
- Views: 3501
- Fri Sep 01, 2006 2:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Creating duplicate rows from input dataset
- Replies: 4
- Views: 1113
- Fri Sep 01, 2006 2:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: writing into a unix file from datastage
- Replies: 11
- Views: 9118
- Fri Sep 01, 2006 2:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding Oracle Enterprise Stage Warnings
- Replies: 5
- Views: 1979
Is that Varchar2(50 CHAR) is equal to Varchar(200) in DS because of NLS_CHARCTERSET=ALT32UTF8 settings in Oracle?? No. That might give 100, but not 200. If I read it as Varchar(200) and write to sequential file as Varchar(50)- then is there any possibility for truncation of data?? Yes. Think about ...
- Fri Sep 01, 2006 2:42 am
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: Use PS to access flat file
- Replies: 5
- Views: 3646
- Thu Aug 31, 2006 8:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ArraySize and Transaction Size
- Replies: 16
- Views: 4209
- Thu Aug 31, 2006 6:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ArraySize and Transaction Size
- Replies: 16
- Views: 4209
(Array size * row size) should be close to, but not over, network packet size (or a multiple thereof) for optimum transmission. (Rows per commit) - or transaction size - is mediated by a number of factors, but should always be a multiple of array size. Array size of 1 with rows per commit of 1 guara...
- Thu Aug 31, 2006 6:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashfile corrupted
- Replies: 7
- Views: 1213
- Thu Aug 31, 2006 6:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: No record JOBPARAMINSTS in executable job file RT_CONFIG410
- Replies: 1
- Views: 1056
- Thu Aug 31, 2006 6:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update Strategy
- Replies: 12
- Views: 1688
- Thu Aug 31, 2006 6:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: corntab scheduling
- Replies: 6
- Views: 1195
- Thu Aug 31, 2006 6:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: exponential formula in a subroutine
- Replies: 1
- Views: 1471
"Scientific notation" in DataStage requires an upper-case E. Thus 2.345e-006 would be regarded as a string, but 2.345E-006 would be interpreted as a number. You can use the Num() function to verify. The maximum supported exponent in DataStage is +38, the minimum supported exponent is -38, and the ov...