Search found 53125 matches
- Thu Aug 09, 2007 4:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trying to convert Dacimal to Packed Decimal
- Replies: 10
- Views: 2393
- Thu Aug 09, 2007 4:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job does not run under
- Replies: 6
- Views: 1367
- Thu Aug 09, 2007 4:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: rows per transaction setting
- Replies: 4
- Views: 1408
Stop wanting to have your cake and eat it too. This is not a DataStage thing. If you want all rows to be in one transaction, then that's that - if you can't feed the rows swiftly, then the transaction will take a long time. It's simple arithmetic. If you want speed, then remove your other restrictio...
- Thu Aug 09, 2007 4:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing and reading a hash file in same stage problem
- Replies: 18
- Views: 3053
- Thu Aug 09, 2007 5:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Partitioning Method
- Replies: 4
- Views: 1510
- Thu Aug 09, 2007 5:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: division
- Replies: 6
- Views: 2400
- Thu Aug 09, 2007 5:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Control Process (pid=xxx) failed
- Replies: 10
- Views: 4127
If a job control process has failed, you might try resetting it in Director, in case any additional diagnostic information "from previous run" is logged as a result. It may, of course, be an operating system limit that has been reached; your system administrator ought to be monitoring things like th...
- Thu Aug 09, 2007 5:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Surrogate Key
- Replies: 13
- Views: 3155
- Thu Aug 09, 2007 5:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: row count in hash file
- Replies: 6
- Views: 1969
- Thu Aug 09, 2007 4:59 am
- Forum: Site/Forum
- Topic: netezza connectivity
- Replies: 1
- Views: 1916
- Thu Aug 09, 2007 12:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unusual Error
- Replies: 3
- Views: 987
- Thu Aug 09, 2007 12:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: row count in hash file
- Replies: 6
- Views: 1969
There are no rows in a hash file. In a hashed file, however, there may be. Set up a VOC pointer to the hashed file (search forum for SETFILE command) and use a query such as SELECT COUNT(*) FROM hashedfilename; to obtain the actual row count. The link row count reports how many rows were sent but, i...
- Thu Aug 09, 2007 12:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trim function in a User Variable Activity
- Replies: 7
- Views: 3368
Re: Trim function in a User Variable Activity
prajish_ap wrote:Can anyone please tell me what this trim function actually does?
Trim(oconv(date(), 'DMD[2,2]')," ","A")
Nothing at all in a parallel job.
- Thu Aug 09, 2007 12:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 partitioning and DataStage
- Replies: 6
- Views: 3612
- Wed Aug 08, 2007 8:58 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
In an SMP environment the BASIC Transformer stage is capable of parallel execution. (Of course you still have the overhead of translation to and from the typeless environment.) Short of a stage-variable-based solution, or writing your own C++ equivalent of the server function, I can't envisage any o...