Search found 15603 matches
- Mon Aug 13, 2007 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Log Warning
- Replies: 3
- Views: 1371
- Mon Aug 13, 2007 3:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Varchar to SmallInt
- Replies: 2
- Views: 1397
- Mon Aug 13, 2007 3:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: MetaData Defination
- Replies: 1
- Views: 664
- Mon Aug 13, 2007 3:38 pm
- Forum: General
- Topic: Handling Packed PIC S9(7) COMP-3 field in CFF stage
- Replies: 4
- Views: 1317
- Mon Aug 13, 2007 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compilation Error - for dsadm user
- Replies: 6
- Views: 1106
- Mon Aug 13, 2007 3:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Fork faile - Previous posts didn't help much
- Replies: 8
- Views: 4597
The 'not enough space' message can be somewhat ambiguous at times, making this problem a bit more difficult to debug. The advice to test it with a 1-node configuration file is sound, if the error remains then possibly you have other causes than actual physical disk or memory space. You should look a...
- Sun Aug 12, 2007 10:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: file process problem--please help
- Replies: 6
- Views: 1486
Anudeep - the Folder stage in Server will return the contents of all files matching the pattern as a single column, which then needs to be parsed. As Craig has stated, you can use a Job Sequence and a loop to process all file names in a directory, passing the name to a job as a parameter. Please, re...
- Sun Aug 12, 2007 10:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: file process problem--please help
- Replies: 6
- Views: 1486
- Sun Aug 12, 2007 10:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination Of IPC Stage
- Replies: 7
- Views: 2334
- Sun Aug 12, 2007 9:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CRC32 Produce Troubling Results
- Replies: 9
- Views: 3928
The mathematics of CRC are interesting and well-defined, plus you can find C code implementations of CRC for 32 and 64 bit in the public domain. Start on this Wikipedia page
- Sun Aug 12, 2007 9:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination Of IPC Stage
- Replies: 7
- Views: 2334
Re: Abnormal Termination Of IPC Stage
Is this hashed file used in one of your 3 lookups?Vinodanand wrote:...DSD.UVOpen Unable to open file '/dso/dsoweb/clients/upac/eligibility/logs/INP_PERS_FILE_CNT_12752'...
- Sun Aug 12, 2007 7:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need to remove header and footer in Source Sequential File
- Replies: 6
- Views: 1846
- Sun Aug 12, 2007 4:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compilation Error - for dsadm user
- Replies: 6
- Views: 1106
- Fri Aug 10, 2007 9:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need logic
- Replies: 5
- Views: 1294
- Fri Aug 10, 2007 9:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Retrieving MINimum value from a list of columns
- Replies: 9
- Views: 2431
Doing a sort of any type in this specific scenario will be much slower than simple declaring <n>/2 stage variables (where <n> is the number of columns to compare); then setting the result of each to the min of the 2 values, like leaves, then processing each leaf with its neighbour and so on. Not pre...