Search found 504 matches

by ShaneMuir
Thu Dec 21, 2006 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

Unless you are referencing and writing to the same hashed file in ONE Transformer stage, buffering of any sort between the reference and write will cause inconsistencies in the result. Thanks for that information Ken. Luckily the one transformer is writing and referencing the hash file this time. B...
by ShaneMuir
Mon Dec 18, 2006 11:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

You sound surprised. :lol: I am constantly surprised :) No, they don't need to be the same per se. However, with your previous settings the sending of the Inserts to the database were being deferred until it had 100 to do, while each Update went immediately. If the Update of an Insert went before t...
by ShaneMuir
Mon Dec 18, 2006 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

And disable read and write caching, as well as turn OFF row buffering or inter-process. If necessary, deselect Use Project defaults to force no buffering. Unfortunately there is also a previous partitioning stage that requires the inter-process to be turned on, else all the sequential files contain...
by ShaneMuir
Mon Dec 18, 2006 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

chulett wrote:Ok... then let me know what happens when you change your Insert Array Size to 1.
OMG it works. Actually if I set the update array size to 100 it works also.
So it seems that they array sizes have to be the same for it to work?
by ShaneMuir
Mon Dec 18, 2006 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

First question would be are you updating records you've just inserted or pre-existing records in the database? I'm guessing you're not updating just inserted records or you'd be feeding inserts back into the hashed file. Actually I am doing an update on just inserted records - and I am feeding inse...
by ShaneMuir
Mon Dec 18, 2006 8:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update into Oracle not working
Replies: 13
Views: 4406

Update into Oracle not working

Hi all Not sure if anyone can help, but just in case somebody has had a similar experience. My issue is that it appears that the update statement when loading into an Oracle db using OCIORA8 stage does not seem to be working. The perplexing thing is that I have other jobs which do exactly the same t...
by ShaneMuir
Thu Dec 14, 2006 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Standardization & Validation : Lame question
Replies: 5
Views: 1439

There could be other nuances as well that would make it prudent to give a default value in your job rather than let the database default it. 1. Be sure to check for empty strings as well as NULL. I know that our Oracle DB treats an empty string as NULL and even if you have 'not nullable' set in the ...
by ShaneMuir
Wed Dec 13, 2006 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Partitioner Stage outputs zeros
Replies: 8
Views: 3522

Just an update to this problem, for everyones info. I don't think it was caused by the propogating of the columns or lack thereof. I was having the same issue in ver6, where I was using the sequence /----> Seq1 / OraOCI8 ---> Trf ---> Partition < \ \----> Seq2 No matter which partition algorithm I u...
by ShaneMuir
Sun Dec 03, 2006 10:05 pm
Forum: General
Topic: Upgrade from Version 6
Replies: 2
Views: 2600

Excellent. Thanks for that information Craig. I knew about the XP Pro bit but I wasn't sure if there was anything else.

As for the upgrade itself - by the time my client gets around to actually deciding on an upgrade we could well be up to version 9 :lol: Damn beaurocracy.
by ShaneMuir
Sun Dec 03, 2006 6:10 pm
Forum: General
Topic: Upgrade from Version 6
Replies: 2
Views: 2600

Upgrade from Version 6

Hi All The client I am currently on is contemplating an upgrade from version 6 but are thinking about upgrading to version 7.5 (Server Edition). Arising out of this is a couple of questions: 1. Should they even bother? I mean should they just go straight to 8? Will IBM still support an upgrade to 7....
by ShaneMuir
Tue Nov 28, 2006 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to track which ETL job is loading 1 particular DB table
Replies: 24
Views: 12002

Just as an aside - we populate our oracle tables with a JobID so that we know which records were updated by which jobs. This makes it very easy to determine which job was loading the table. Of course this only works to determine which job loads the table, if there is data in the table already.
by ShaneMuir
Tue Nov 28, 2006 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup
Replies: 5
Views: 1671

pradkumar wrote:They DO match
Just looking for the obvious solution first - so there are no extra spaces in either table, non printing characters etc?
by ShaneMuir
Tue Nov 28, 2006 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup
Replies: 5
Views: 1671

Re: Lookup

Hi In ODBC1 , I am joining few tables. and based on the key columns obtained from it I am doing a lookup with the key columns present in ODBC2 to pull out one column. When I designed the joba nd ran it, it gets executed but no lookup is performed. What might be the problem? At a guess - your keys d...
by ShaneMuir
Thu Nov 23, 2006 7:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When is a NULL not a NULL?
Replies: 9
Views: 3336

Actually I am more interested in the treatment of a NULL in a HashFile where that NULL is part of the key. Will this be interpreted as a @NULL.STR when entered as opposed to null? After trawling the forum - I think I have found part of my answer. I always thought that you couldn't enter NULL into a...
by ShaneMuir
Thu Nov 23, 2006 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When is a NULL not a NULL?
Replies: 9
Views: 3336

Given that 128 is 10000000 in binary it may be that Oracle, set to use ASCII (which, technically, is a seven-bit encoding) ignores the high-order bit. I'm just guessing here, of course. Actually I am more interested in the treatment of a NULL in a HashFile where that NULL is part of the key. Will t...