Search found 42189 matches
- Fri Nov 10, 2006 8:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Poor performance of Universe stage
- Replies: 8
- Views: 2128
Some of us know exactly why you are doing it - to get a multi-row result set by creating the hashed file with X key fields and doing the lookup on less than X. Been there, done that, got the t-shirt. You need to understand how terribly slow that is without indexes and the restrictions that come with...
- Fri Nov 10, 2006 8:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read an Oracle TimeStamp using OCI stage
- Replies: 22
- Views: 5218
The version of database that I'm using is Oracle 9i. And I'm using the Oracle 10g client to connect to it and in DataStage, I'm using ORAOCI9 stage. I'll bet that's your problem right there. Why would you use a 10g client to connect to a 9i database? Think of it as using a 7.5 client to connect to ...
- Fri Nov 10, 2006 8:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to mail out the job that fails
- Replies: 6
- Views: 1237
'My method' will not send out any more emails than any other method mentioned here. As noted, they would be coming from more locations in the job stream rather than the desired 'one central location' but you have control over what gets sent out, so it's not like you'll be drowning in emails or anyt...
- Fri Nov 10, 2006 8:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Poor performance of Universe stage
- Replies: 8
- Views: 2128
Yes. 'Query' is not the same as 'lookup' and sql queries are horrible slow on a hashed file that was designed to do a singleton lookup. Search the forum for CREATE.INDEX and you'll find all kinds of discussions on the topic... this is just one example. Your biggest problem is going to be the fact th...
- Fri Nov 10, 2006 6:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read an Oracle TimeStamp using OCI stage
- Replies: 22
- Views: 5218
As mentioned, it's the long-ass option that is what was formerly known as 'Column Generated' in 6.x and 7.0, the 7.5.x equivalent is: 2. Generate SELECT clause from column list; enter other clauses We use that one exclusively, unless it can't be done via that mechanism at which point we fall back on...
- Fri Nov 10, 2006 5:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read an Oracle TimeStamp using OCI stage
- Replies: 22
- Views: 5218
Right... it automatically adds the TO_CHAR for selects and a TO_DATE for insert/update when the field is declared as a Timestamp in your job - and that *is* the proper type to use for an Oracle DATE field. I don't understand your problem. We do what you did in thousands of places and it is the way i...
- Fri Nov 10, 2006 5:16 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: RTI Tutorial & Help
- Replies: 5
- Views: 3547
- Fri Nov 10, 2006 5:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to mail out the job that fails
- Replies: 6
- Views: 1237
- Fri Nov 10, 2006 5:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read an Oracle TimeStamp using OCI stage
- Replies: 22
- Views: 5218
- Fri Nov 10, 2006 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting String
- Replies: 28
- Views: 6714
Here is a link which explains how you can enter the contest.
- Fri Nov 10, 2006 2:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting String
- Replies: 28
- Views: 6714
Ok... if you are now saying that you only want to remove the 'X' from the field if it is the last character of the string, then you are right - you can't use a simple Convert function to do that. You'll need to do something like Ray posted, check the last character and if it is an 'X' then extract e...
- Fri Nov 10, 2006 2:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: last ;(semicolon) missing after FTP
- Replies: 4
- Views: 1709
It works if I treat the whole row as a single column and transfer the file. That's how I generally do it - and seems to me the best solution for preserving the struture of the file. The FTP stage is metadata driven and perfectly happy to massage data or change delimiters or do all kinds of other th...
- Fri Nov 10, 2006 9:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OCI has fetched truncated data
- Replies: 6
- Views: 1603
- Fri Nov 10, 2006 8:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Strange error in Teradata Ent. Stage (read)
- Replies: 9
- Views: 3377
- Fri Nov 10, 2006 8:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OCI has fetched truncated data
- Replies: 6
- Views: 1603
Re: OCI has fetched truncated data
Any idea why this error is coming. No not really, not with so little information SunShine. However, we can make some guesses. What kind of fields are in your source table(s)? Anything fun like a CLOB? If not a CLOB are there any NUMBER fields defined? Not NUMBER(xx) but just NUMBER... those are the...