Search found 42189 matches

by chulett
Fri Oct 14, 2005 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting a Date in An integer format
Replies: 8
Views: 2054

Define exactly what you mean by 'integer' format so that people don't spend time on the 'wrong' solution.
by chulett
Fri Oct 14, 2005 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ambiguous Error Message!
Replies: 16
Views: 4712

Doh... got distracted and sat on this post for too long. :wink:

You go, Ken!
by chulett
Fri Oct 14, 2005 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ambiguous Error Message!
Replies: 16
Views: 4712

Probably so. On the hashed lookups - is there really a need to load your entire Oracle tables into them? One 'trick' (aka Best Practice) is to only load what you need for the current dataset. I generally make sure that the key fields from the data that I am loading is also up in an Oracle table - th...
by chulett
Fri Oct 14, 2005 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ambiguous Error Message!
Replies: 16
Views: 4712

Ok... if it's in the SYS.MESSAGE table then why does DataStage report it as an "Unknown error 911"? Is the diagnosis that it is a space issue / segment violation correct? :?
by chulett
Fri Oct 14, 2005 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple date from Seq file not uploading to Oracle
Replies: 9
Views: 1852

But really couldn't figure out how the datatype changed while importing That's because a DATE field in Oracle is really a Timestamp in disguise and always carries a time portion. When it looks like it doesn't, that's because the time portion has been set to zeroes as we've discussed earlier in the ...
by chulett
Thu Oct 13, 2005 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NO OF WEEKS
Replies: 6
Views: 1590

Ah. Thanks for the clarification... forgot the previous discussions were and/or related.
by chulett
Thu Oct 13, 2005 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to use oracle user defined function in the user defined sql
Replies: 8
Views: 1994

In other words, go talk to your DBA. :wink:
by chulett
Thu Oct 13, 2005 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ambiguous Error Message!
Replies: 16
Views: 4712

When you job fails again, reset the job from the Director and see if it logs an entry with 'From previous run...' in it. If so, double-click on that entry and let us know what details are in there.
by chulett
Thu Oct 13, 2005 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple date from Seq file not uploading to Oracle
Replies: 9
Views: 1852

Simple - concatenate a zero time onto the end of your date:

Code: Select all

YourField : " 00:00:00"
by chulett
Thu Oct 13, 2005 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple date from Seq file not uploading to Oracle
Replies: 9
Views: 1852

Look at the generated SQL in the Oracle stage. Note the format it expects the DATE fields declared as Timestamps to come in as. Transform your fields to match that format. Problem goes away. :wink:
by chulett
Thu Oct 13, 2005 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Modified Date
Replies: 4
Views: 3305

In addition, last modified time is displayed in the Manager. For all objects, I do believe.
by chulett
Thu Oct 13, 2005 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NO OF WEEKS
Replies: 6
Views: 1590

Not to derail this, but... :?

Ray, I could have sworn in the past you've said that DataStage was an odd duck in that it did not enforce any precedence when evaluating expressions? That it is, without parens, evaluated strictly from left to right. Am I mis-remembering?
by chulett
Thu Oct 13, 2005 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Omit last record from a sequential file
Replies: 13
Views: 9387

Vincent is talking about the Sequential File stage in a Parallel job, which will automagically reject / not process any rows where the metadata doesn't match without raising a fuss. A Server job is different and will complain when there are mismatches. You can handle your problem by switching to the...
by chulett
Wed Oct 12, 2005 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nullable fields in hash file and oraoci stages
Replies: 3
Views: 1521

No, it's not ok.

A lookup is an equi-join where field = key and what is equal to null? Yup, that's right - nothing. :wink:
by chulett
Wed Oct 12, 2005 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Running Slow - Need Guidance to improve performance
Replies: 9
Views: 2572

Any chance you are writing to any of these hashed files (or a hashed file) as well during the load? This is also a Prime Suspect when dealing with progressive slowdown in a job.