Search found 53125 matches
- Wed Jun 22, 2005 1:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Conversion
- Replies: 8
- Views: 1925
- Wed Jun 22, 2005 12:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to clean up a file through server routine?
- Replies: 18
- Views: 3133
- Wed Jun 22, 2005 12:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to clean up a file through server routine?
- Replies: 18
- Views: 3133
- Wed Jun 22, 2005 12:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom 20905
- Replies: 2
- Views: 1112
- Wed Jun 22, 2005 12:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to clean up a file through server routine?
- Replies: 18
- Views: 3133
- Tue Jun 21, 2005 7:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: IBM have buried DataStage
- Replies: 4
- Views: 1538
- Tue Jun 21, 2005 7:13 pm
- Forum:
- Topic: Metadata information through basic routine.
- Replies: 6
- Views: 2986
- Tue Jun 21, 2005 5:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP a string only when Update is Successful!!
- Replies: 3
- Views: 925
Consider setting up the FTP as a shell script invoked from an after-stage or after-job subroutine. Within that routine you can make your success tests to decide whether to invoke the script. The table name can be supplied (possibly as a job parameter) through the Input Value field when invoking the ...
- Tue Jun 21, 2005 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Use Sequential file values as job parameters
- Replies: 5
- Views: 1311
Double click on the result cell in the Test grid - see if anything got logged. Add debugging statements to your routine to report progress using DSLogInfo() - re-test and check results as above. Add ON ERROR and LOCKED clauses to OPENSEQ to handle these possibilities. Add a CLOSESEQ statement before...
- Tue Jun 21, 2005 5:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job locked when updating DB2 table
- Replies: 1
- Views: 752
- Tue Jun 21, 2005 5:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Schedual
- Replies: 11
- Views: 3318
- Tue Jun 21, 2005 5:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL Runing On Several Tables
- Replies: 7
- Views: 1264
- Tue Jun 21, 2005 4:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP of zero-byte files suddenly failing
- Replies: 2
- Views: 1013
- Tue Jun 21, 2005 4:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Validation
- Replies: 7
- Views: 2356
- Tue Jun 21, 2005 4:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator stage - Warning
- Replies: 2
- Views: 969
The warning is warning you - because you need to know - that you are trying to shoehorn a potentially large value (a dfloat) into a small receptacle (an int32). That's the "range" part of the warning. The largest int32 is 2^31-1. The largest dfloat is substantially larger than that! Further, if the ...