Search found 42189 matches

by chulett
Wed Feb 19, 2014 8:27 am
Forum: General
Topic: Datastage project location space
Replies: 4
Views: 1356

There is no space allocated per Project, it's just a folder. The space is controlled by size of the partition you've created it in and it serves all projects.
by chulett
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

If this is working for you then good. My only thoughts I've already posted... I educate people working for me to not use those " = 1 " or " = 0 " comparisons, they get called out and corrected during the peer review. One example: If SVPreEmp = SVCurrEmp then 1 else 0 Should be si...
by chulett
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

What kind of an "upgrade" was done?
by chulett
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

They haven't posted in three years. Why not let us know what issue you are having?
by chulett
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 ...
by chulett
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

True... except for the fact that the code I posted specifically checks for null. :wink:
by chulett
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

Make sure you define and initialize the variables properly. The first is a three character string set to @NULL and the second is an integer set to @FALSE in my case. This so svFirstDept shows 'ABC' all the way down.
by chulett
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

It is writing them but not committing them, I'll wager. Use a small transaction size or an ODBC stage so you can specifically issue a 'commit' when needed.
by chulett
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...
by chulett
Mon Feb 17, 2014 6:15 pm
Forum: General
Topic: $PROJDEF Problem
Replies: 4
Views: 1423

I just wanted to make sure you were on the latest (last) 7.x release as, from what I recall, all of this $PROJDEF goodness was actually supposed to work.
by chulett
Mon Feb 17, 2014 11:20 am
Forum: General
Topic: $PROJDEF Problem
Replies: 4
Views: 1423

What's your version?
by chulett
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

Yes, it could be and that would be an issue to raise with your DBA.
by chulett
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 =>...
by chulett
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

Welcome. And no, it's not. From what I recall from reading other posts here on the same topic, you would have to leverage Java to source from a URL.
by chulett
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...