Search found 358 matches

by loveojha2
Mon Jan 16, 2006 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create a progressional variable in data stage?
Replies: 3
Views: 1177

As Sreenivasulu told its not the variable, you should be using table or file for the purpose.

Datastage provides KeyMgtGetNextValue routine for the purpose. Which anyway uses a file for storing the next value.
by loveojha2
Fri Jan 13, 2006 4:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open RT_STATUS538 file
Replies: 4
Views: 1791

Are you running the child sequences in parallel and by any chance more than 1 sequence is calling a same server job.

just a guess.
by loveojha2
Fri Jan 13, 2006 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback the tables
Replies: 6
Views: 2014

You would need something like timestamp column (or any other column as an indicator) within your tables which can relate the last entered data into your tables, so that on error in populating any of the table, you can delete the newly entered data using the indicator field, in the other two table.
by loveojha2
Thu Jan 12, 2006 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Out waiting for mutex
Replies: 26
Views: 14676

Re: Time Out waiting for mutex

Hi everyone, I have a job using IPC stage and getting this 'ds_ipcput() - timeout waiting for mutex'. I used default buffer size (128) and time out (10) previously and increased buffer size like 258 , 1000 and tested again. Tried to increased the waiting time as well. But still have this error. Not...
by loveojha2
Wed Jan 11, 2006 2:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple tables loaded into single target table
Replies: 5
Views: 2872

Moreover use intermediate Hashed File for the lookup.
by loveojha2
Wed Jan 11, 2006 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple tables loaded into single target table
Replies: 5
Views: 2872

One of the way that I am thinking is --- loading these source tables into source files and using merge stage to get one single file with all the column and map it to the target with hash lookup against the target table Or take any table A, B or C as a source table, The rest of the two tables would ...
by loveojha2
Mon Jan 09, 2006 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLOB datatype error
Replies: 11
Views: 3893

We also found similar problem working with CLOB datatype. The workaround was using Longvarchar with a lesser size, in our case we chose 2000, the possible reason of the problem could be of memory (may be Array Size * Record Length )(Experts plz correct me if my assumption is wrong). Try it with Long...
by loveojha2
Wed Dec 28, 2005 1:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: comma delimeted files
Replies: 3
Views: 1267

Its not easy even with a single column, since you are not sure of the field boundaries.
by loveojha2
Wed Dec 28, 2005 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: comma delimeted files
Replies: 3
Views: 1267

Re: comma delimeted files

Read a whole line as a single column, you can achieve this with having 000 as the quote character and 010 as the delimiter. Now process this single column according to the requirement. hi guru's i have a senerio where in the ", " delimeted seq file ,inside the column contains ","...
by loveojha2
Wed Dec 28, 2005 12:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to track the lookup Result that is not matched by lookup
Replies: 2
Views: 1073

Instead of linkname.NOTFOUND(or NOT(linkname.NOTFOUND))
use
isNull with all the lookup keys to see if all are null then no match is found otherwise a match is found.

linkname.NOTFOUND manytimes doesn't work correctly with lookup stages other than Hashed File lookups.
by loveojha2
Thu Dec 22, 2005 11:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ROLLBACK SEGMENT ERROR
Replies: 4
Views: 2286

Are you using transaction size as 0 for target (Oracle). Moreover you need not change Siebel, it's the problem with Oracle rollback segment. Solns: 1. Increase the rollback segment size. or 2. Experiment with transaction size other than 0 (but here you would need to be a bit careful since specifying...
by loveojha2
Thu Dec 22, 2005 2:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No reason for Abort
Replies: 4
Views: 1443

Try resetting the job from director and see is there any log entry from previous run pointing to the problem?
by loveojha2
Thu Dec 22, 2005 12:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to set time out period for a job run?
Replies: 6
Views: 1888

I also had a similar requirement, check this post

viewtopic.php?t=96797
by loveojha2
Wed Dec 21, 2005 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove double quotes ( " )
Replies: 9
Views: 14467

Hi suresh, If u want to remove double quote in the Transformer and pass the data,use Ereplace function in the Transformer. Ereplace (string, substring, replacement [ ,number [ ,begin] ] ) Regards kcs What you can do is read a single line of sequential file as one column in the transformer use Erepl...
by loveojha2
Tue Dec 20, 2005 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: disk space full causing datastage to work weird
Replies: 4
Views: 3017

I think this the link that anand is talking about

viewtopic.php?t=97239