Search found 42189 matches

by chulett
Thu Mar 16, 2006 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype of compressed data.
Replies: 14
Views: 4852

Define what you mean by 'compressed data'.
by chulett
Thu Mar 16, 2006 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8081

I developed a job with an Oraociblk target. This had about the same performance as the ordinary OCI stage. That must be because you are using the dreaded 'Automatic Mode'. Yuck. Switch it to Manual and use the stage to just generate the files you need. Then script a plain old sqlldr direct path bul...
by chulett
Thu Mar 16, 2006 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling stored procedures
Replies: 5
Views: 1539

Actually, I meant dump the stored proc/function and replace it with a 'normal' OCI stage. It's just doing an insert after all... why make it more complicated than it needs to be?
by chulett
Thu Mar 16, 2006 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling stored procedures
Replies: 5
Views: 1539

Why not just replace it with a simple OCI stage? :?
by chulett
Thu Mar 16, 2006 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8081

So, do you have it figured out? OraOciBlk is the one you want, probably in Manual mode. We're using it with both 9i and 10g databases.
by chulett
Thu Mar 16, 2006 1:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call to CreateFileMappin() failed
Replies: 6
Views: 1542

Ok, that's a start. Suggest you post more specifics about the job design - what stages it uses, how it is laid out, data volumes, if the job has ever run before, etc... and then see if anyone can help. Other than changing those parameters, I'm not sure what else to try. Hopefully, someone experience...
by chulett
Thu Mar 16, 2006 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call to CreateFileMappin() failed
Replies: 6
Views: 1542

Well, did you try searching?
by chulett
Wed Mar 15, 2006 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call to CreateFileMappin() failed
Replies: 6
Views: 1542

With so little information? I don't think so. All I can suggest is you Search for 'CreateFileMapping' and see what turns up.
by chulett
Wed Mar 15, 2006 10:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch files
Replies: 6
Views: 1228

I've marked this day with a white stone. :wink:
by chulett
Wed Mar 15, 2006 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch files
Replies: 6
Views: 1228

'Job Control' code, typically written by hand. Director: Tools / Batch / New... if we are talking DataStage 'batches', that is.
by chulett
Wed Mar 15, 2006 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send EmailNotification to more than one person
Replies: 5
Views: 1169

What are you using to send mail from Windows? It may want spaces between addresses, commas, semi-colons - who knows. UNIX just wants whitespace. And the "best" way I've found to handle this is to use a group for the Notification Activity, not individual email addresses. That way the recipients can b...
by chulett
Wed Mar 15, 2006 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert rows from two links
Replies: 8
Views: 1726

No, all I meant was exactly what I said - it all happens as a single unit of work. All the rest is under your control via the link ordering, array size and lastly transaction handling - the number of rows per transaction - that you setup in your job and the Oracle stage.
by chulett
Wed Mar 15, 2006 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert rows from two links
Replies: 8
Views: 1726

Umbix62 wrote:But the question is. An Oracle Stage used to insert some rows from two input links includes the two insert operation in the same transaction or not?

Yes, same transaction as long as we're talking about a single OCI stage.
by chulett
Wed Mar 15, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reject file from oracle target
Replies: 11
Views: 2346

Ken has already given you the solution. In spite of your desire to not used hashed files for some reason, you will need to in this case to separate the 'good' updates from the 'bad' updates. Good updates will get a hit on the existing keys hashed file and are sent to the database stage for 'updation...
by chulett
Wed Mar 15, 2006 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs aborted in the middle of dataloading into warehouse
Replies: 2
Views: 895

Another option similar to the second one offered by ogmios. Assuming a stable input source such that 5001 is always the same row when rerunning, a job parameter used in the output link constraint. Set it to default to zero and your constraint to say '@INROWNUM > JobParameterName'. When it's time to ...