Search found 57 matches

by sun rays
Tue Oct 11, 2005 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file
Replies: 6
Views: 2027

Re: hash file

Suppose we have this hash file called HASH. This same file is called at two places in the job . This hash is created from target table TGT in which both the insert and update is being done Source table SRC gives out the following columns: Key1, key2, col1, col2,col3 We look up HASH twice . one for ...
by sun rays
Tue Oct 11, 2005 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: make changes to a shared container
Replies: 8
Views: 4150

Re: make changes to a shared container

I need to make changes to a shared container. The compile option in the designer is not enabled for me to make the change. How does one make changes to a shared container. Do we need to copy the code on a new server job and then modify it and make changes out there and save it as a shared container...
by sun rays
Tue Oct 11, 2005 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to validate US State Codes
Replies: 9
Views: 2699

Use the hash file to look-up, and in the transformer check if the look-up failed or suceeded, by using ISNULL() and assign a zero or 1 based on the result.
by sun rays
Tue Oct 11, 2005 9:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Orphan Server Instances Problem
Replies: 7
Views: 1646

maffan76 wrote:it says "cannot kill the process" access denied

Login in as DS ADMIN user and try.
by sun rays
Mon Sep 12, 2005 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job sequence
Replies: 4
Views: 1169

Editing the original post to remove the problem description is singularly unhelpful. Can you please reinstate it so that anyone searching for this problem in future can be helped? I am sorry for editing original post. In fact I thought I was duplicating the posts on the similar issue, which I reali...
by sun rays
Mon Sep 12, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid duplicates in merge stage
Replies: 7
Views: 4757

Re: How to avoid duplicates in merge stage

I guess the first thing to be done to use a merge stage is to remove duplicates, in your case the location and position are keys, and you have duplicate values. So you cannot use merge stage for this.
by sun rays
Mon Sep 12, 2005 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The batch job will fail to pass the password to callable job
Replies: 5
Views: 2544

Re: The batch job will fail to pass the password to callable

I am facing a problem with parameters That is when we pass parameters dynamically from batch job to sub batch jobs.Those callable jobs are every time aborting due to SQL connection failure because of I think those are getting some nulls or wrong passwords. thatswhy my host user Oracle source user I...
by sun rays
Mon Sep 12, 2005 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dead End
Replies: 12
Views: 2849

Re: Dead End

I had a similar issue couple of times, the reason was there were some locks on the target table. once you are able to unlock them , then I guess you can get rid of the issue.
by sun rays
Tue Aug 23, 2005 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job sequence
Replies: 4
Views: 1169

Thanks, chulett. Appreciate your help.
chulett wrote:Sounds like the dreaded Windows XP Service Pack 2 related problem. There is a patch available on Ascential's eSupport website, download and install it and it should fix you right up.
by sun rays
Tue Aug 23, 2005 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job sequence
Replies: 4
Views: 1169

job sequence

Posting the original issue When using the sequence to run the jobs in the windows environment, datastage 7.5, it was working fine. But when we were doing the same in unix environment, the jobs were failing with the "logon denied" error message where ever the database stages are used. In fa...
by sun rays
Mon Jun 20, 2005 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX jobs for a limited number of rows
Replies: 7
Views: 5295

This option is enabled in server jobs, but not in PX.
Also you can do a work around as Roy said, but this would only put a limit on the input rows and not on output rows. For Ex your job may be limited to read only 1000 rows and process them, but your output may still have just 10 rows, or 2000 rows.
by sun rays
Thu Jun 09, 2005 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to realize opposite of Pivot?
Replies: 10
Views: 5379

Saravanan's method could work, if you take the inrow-num and apply mod function with 3 as divisor and if get zero as a result then it goes to the third file, else apply mod with 2 as divisor and if get zero then it goes to second file, else it goes to first file. By this we could know which is first...