Search found 15603 matches
- Sun Aug 19, 2012 3:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Complex flat file stage issue in datastage release 8.5
- Replies: 20
- Views: 16097
I can't check here regarding the CFF stage, but the 3 numbers you posted in your thread are all negative, right? If the CFF won't handle it correctly (and I'm 95% certain it can, since this is basic COBOL functionality), then at least the conversion for negative numbers is a straightforward computat...
- Sun Aug 19, 2012 2:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datatype Issue
- Replies: 12
- Views: 5632
- Sat Aug 18, 2012 9:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datatype Issue
- Replies: 12
- Views: 5632
- Sat Aug 18, 2012 7:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datatype Issue
- Replies: 12
- Views: 5632
Actually, it looks like you need to use dfloat (double-precision floating point rather than single-precision). But either floating point representation is going to give a potential error, since numbers are represented as approximations (mantissa and exponent). It is always preferable to use decimal ...
- Sat Aug 18, 2012 7:46 am
- Forum: General
- Topic: Routine DSJ LINKROWCOUNT Error
- Replies: 11
- Views: 3459
Re: Routine DSJ LINKROWCOUNT Error
Thanks Craig - I looked at the code again:
should read:somu_june wrote:...
vRowcount = DSGetLinkInfo (JobName,StageName,LinkName,DSJ.LINKROWCOUNT)
...
Code: Select all
vRowcount = DSGetLinkInfo(DSJ.ME,StageName,LinkName,DSJ.LINKROWCOUNT)
- Fri Aug 17, 2012 11:56 pm
- Forum: General
- Topic: Routine DSJ LINKROWCOUNT Error
- Replies: 11
- Views: 3459
- Fri Aug 17, 2012 11:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datatype conversions
- Replies: 17
- Views: 8493
- Fri Aug 17, 2012 5:12 am
- Forum: General
- Topic: Extract query information in the job
- Replies: 6
- Views: 1400
- Fri Aug 17, 2012 4:23 am
- Forum: General
- Topic: Use of DSJ.ERRFATAL
- Replies: 2
- Views: 1241
- Fri Aug 17, 2012 2:38 am
- Forum: General
- Topic: Extract query information in the job
- Replies: 6
- Views: 1400
- Fri Aug 17, 2012 2:06 am
- Forum: General
- Topic: DataStage 7.5, compare jobs problem
- Replies: 13
- Views: 4358
- Fri Aug 17, 2012 1:14 am
- Forum: General
- Topic: DataStage 7.5, compare jobs problem
- Replies: 13
- Views: 4358
- Fri Aug 17, 2012 1:12 am
- Forum: General
- Topic: Job access log
- Replies: 3
- Views: 1128
- Fri Aug 17, 2012 12:39 am
- Forum: General
- Topic: DataStage 7.5, compare jobs problem
- Replies: 13
- Views: 4358
- Fri Aug 17, 2012 12:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Calling Parallel Routine to process Unicode strings
- Replies: 1
- Views: 2532
Unfortunately the pointer-to method won't work in this case, since DataStage uses it's own overloaded functions and definitions, i.e. the APT_Ustring class with methods to convert to other data types. I would look into changing the NLS mapping in the job itself so that DataStage won't try to do the ...