Search found 42189 matches
- Wed Feb 19, 2014 8:27 am
- Forum: General
- Topic: Datastage project location space
- Replies: 4
- Views: 1356
- Wed Feb 19, 2014 8:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Break operation in row wise comparison
- Replies: 14
- Views: 6308
- Wed Feb 19, 2014 8:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage ODBC connector not working properly
- Replies: 1
- Views: 1943
- Wed Feb 19, 2014 8:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performance tuning for update the records in target table
- Replies: 6
- Views: 2494
- Wed Feb 19, 2014 8:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Improving performance of deletes
- Replies: 9
- Views: 3777
I needed to clean up the quintuple posting you managed somehow ( I think that's a new record :wink: ) and then moved you off to your own post. Similar != same, so best to post your own details and link back to anything older you think may be relevant. As I've done here. First question is easy - do ...
- Tue Feb 18, 2014 2:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Break operation in row wise comparison
- Replies: 14
- Views: 6308
- Tue Feb 18, 2014 8:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Break operation in row wise comparison
- Replies: 14
- Views: 6308
- Mon Feb 17, 2014 11:51 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: Audit log table for webservice
- Replies: 3
- Views: 3794
- Mon Feb 17, 2014 11:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Running Oracle connector in parallel mode
- Replies: 13
- Views: 6937
It may speed up processing, maybe even considerably. But as always, it... depends. On many things. SMP or MPP architecture, I/O bandwidth, available CPUs and memory for sorting / hashing / I/O buffers for example are needed. And generally it doesn't help a simple select like this one. Never mind tha...
- Mon Feb 17, 2014 6:15 pm
- Forum: General
- Topic: $PROJDEF Problem
- Replies: 4
- Views: 1423
- Mon Feb 17, 2014 11:20 am
- Forum: General
- Topic: $PROJDEF Problem
- Replies: 4
- Views: 1423
- Mon Feb 17, 2014 8:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Shared Table Definitions?
- Replies: 3
- Views: 1996
- Mon Feb 17, 2014 8:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Break operation in row wise comparison
- Replies: 14
- Views: 6308
Re: Break operation in row wise comparison
The comparison operation should break at the first instance itself. So... you only want the first two records and all records after the first 'break' should be skipped? If so you'll need different code... something like: svFirstDept => If IsNull(svFirstDept) then DEPT else svFirstDept svIsBroken =>...
- Mon Feb 17, 2014 8:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading XML file from a URL
- Replies: 3
- Views: 2456
- Mon Feb 17, 2014 8:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Running Oracle connector in parallel mode
- Replies: 13
- Views: 6937
Re: Running Oracle connector in parallel mode
please tell me where to use @FALSE constraint. Constraints are an element of Transformer output links. For the record, you could have added one before the Sort stage and set that value there to gauge how long the source portion of the job consumed. The remainder would have been either the sorting o...