Search found 98 matches

by iwin
Sun Sep 24, 2006 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Precision too long
Replies: 1
Views: 671

Precision too long

Hi, I am getting an error "value larger than specified precision allowed for this column" while loading the table, I dont know the exact column for this error . but i have a column in table whose data type is number 9(5) and for this field i am getting value from source as 12345.98000. Can...
by iwin
Tue Jul 25, 2006 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 2376

kcbland wrote:Look at this:
viewtopic.php?t=85578

It's a shell script that runs dsjob. You should be able to get the idea how some of us are using it.
Thanks Kcbland.
by iwin
Tue Jul 25, 2006 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 2376

ray.wurlod wrote:Type dsjob alone (no parameters) to get the top-level syntax.

Type dsjob -run (no further parameters) to get the syntax for running jobs.

Cross-reference what you learn here back to the manual.
Thanks Ray.
by iwin
Tue Jul 25, 2006 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 2376

kcbland wrote:You mean the command line program dsjob? It's fully documented in your DS manuals under the Start menu as well as having help just by typing in dsjob.
Thanks for the reply kcbland. i have seen the documentation but i couldnt figure our what are the operands for DSJOB?
by iwin
Tue Jul 25, 2006 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 2376

Sorry, it is not attributes. i was referring to operands of DSJOB
by iwin
Tue Jul 25, 2006 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 2376

DSJOB Attributes

Hi,
I was just wondering what are the attributes for DSJOB. I know that there are options,parameters for DSJOB but not sure of attributes. Can anyone please confirm it?

Thanks,
by iwin
Tue Jul 18, 2006 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

Hi All,
Thanks for your suggestion.
by iwin
Mon Jul 17, 2006 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

To make it clear WHY they advised thus, a hashed file can only be looked up using an exact match on its key column(s). You are trying to do a "reverse lookup", which is not supported by the Hashed File stage (for the reason above). You could use a UV stage to perform a reverse lookup agai...
by iwin
Mon Jul 17, 2006 2:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

kcbland wrote:Build another hashed file with col_code as the primary key and ID as the attribute.
But if i have another hash file, how can i match with the col_code with the source column name. Can please come in detail.

Thanks
by iwin
Mon Jul 17, 2006 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

Your original question stated you needed to align a source column named A to a specific lookup for 3 known values. I now do not understand your followup question because it doesn't correlate to your original. sorry for confusion. Let me come again.. I have a source file with column names A,B,C. And...
by iwin
Mon Jul 17, 2006 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

kcbland wrote:Sounds like you need multiple reference links to the same hashed file, each one with different literal values in the key expression.
I have 6 hash files each with 14 columns to match. is there any different logic.

Thanks
by iwin
Mon Jul 17, 2006 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rules/Logic
Replies: 12
Views: 3087

Transformation Rules/Logic

Hi, I am getting 3 columns named A,B,C from Source and i have to do a lookup to a hashed file which has 2 columns named col_ID,col_code where col_ID has values 20,30,40 and col_code has values A,B,C. I have to match such that if the source column name is 'A' and Hashcolumn Col_code value is 'A' then...
by iwin
Thu Jul 13, 2006 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4878

Re: Job Sequence question

I have 4 jobs which run in parallel in Sequence. I want to be notified through email ONLY if any one of the job aborts. How do I do that??? I understand I have to use Notification Activity stage but can somebody throw some light on the design aspects like how many Notification stage I should use an...
by iwin
Thu Jul 13, 2006 11:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: slow changing dimensions Type 2
Replies: 22
Views: 7367

You... could. It (the database work) would run much slower, however, so keep that in mind. All that really buys you that I can see is the fact that your hashed file would be in sync with your database in the event of an abort, and it changes your restart/recovery process. I prefer to not do it that...
by iwin
Thu Jul 13, 2006 11:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: slow changing dimensions Type 2
Replies: 22
Views: 7367

chulett wrote:There's no reason to 'commit for each insert'.
Well, i thought we will be able to update the hash file with the current data if we commit for each record in the target table.