Search found 14 matches

by praj
Mon Mar 22, 2004 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure
Replies: 8
Views: 6091

OshExecuter.sh?

What does OshExecuter.sh does ?
by praj
Fri Mar 19, 2004 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure
Replies: 8
Views: 6091

Parallel job reports failure

Hi All, I am facing a strange error, which is aborting my jobs. The log file shows "Parallel job reports failure (code Internal error - missing script file RT_SC35/OshExecuter.sh)" I am running few jobs in sequence and sometimes this error occurs and job aborts. If you rerun the job again ...
by praj
Sat Feb 28, 2004 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BuilOP
Replies: 2
Views: 1610

BuilOP

I have a buildop doing certain caluculation on an input with aprox 5-6 million od data. In my buildop i am running a loop with 1500 iterations, for each input record. The time this job takes is quiet high. Is there any way of reducing this time? any optimization suggested while working with buildops?
by praj
Thu Feb 19, 2004 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row count in dataset
Replies: 3
Views: 2762

"You could use the counter with the Stage Variable." ...seems to be most tempting and easy solution. But this will blow up as u add configuration file to ur job(which u will). Just add 2*2 or 4*4 config file and c the result.
by praj
Mon Feb 16, 2004 12:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Partition while using lookup
Replies: 5
Views: 2526

as Teej said its recom. to hv hash partitioning on the keys.
And i think its better to hv the lookup fields sorted(although its not necessary for DS) . U can use the perform sort checkbox for the same in partitioning sheet :) .
by praj
Tue Feb 10, 2004 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion in PX
Replies: 3
Views: 3578

Thanx Teej,

That is what i have done but dont u think it will make process lil slow.

I thought of writing one single server job, in between my parallel jobs, for these kind of conversions, but then one will miss out the crux of PX.

Regards,
Praj
by praj
Tue Feb 10, 2004 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion in PX
Replies: 3
Views: 3578

Date conversion in PX

Hi, How do we handle date conversions in PX? For server jobs, we can use iconv and oconv but in PX theres no such option. So then how to handle dates which are not in standard formats? For ex: if you have a date like 24-dec-2003, there is no way but to have a file with dec->12 mapping and using this...
by praj
Mon Feb 09, 2004 10:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a DS Job From Command Line
Replies: 14
Views: 6180

Once u r in bin dir under DSEngine use the command
dsjob -run -param <parameters list> -jobstatus <project name> <Jobname>

Regards,
Praj
by praj
Tue Feb 03, 2004 3:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter Manager
Replies: 3
Views: 1973

The problem is i am not able to downld the Parameter manager client component from the link above.
Has anybody tried dwnlding that before?
by praj
Tue Feb 03, 2004 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter Manager
Replies: 3
Views: 1973

Parameter Manager

Is nebody using Parameter Manager? how good it is?
I tried to download the client component from http://www.datastagexchange.com/PM/ but no success :(
ne pointers :?: :arrow:
by praj
Mon Feb 02, 2004 11:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 5
Views: 5085

I dont think u can call a routine in a Px job transformer.
We can do the same in server.
One thing you can do is move the values in the routine to stage variable and use them in Xmer :)
by praj
Fri Jan 23, 2004 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PX job re-run abort
Replies: 3
Views: 2433

PX job re-run abort

I am running a PX job creating multiple datasets from a seq file using a Xmer. The input has millions of records. Now when i run this job for the first time, there was no problem but when i rerun that job changing input and without recompiling job it aborted. if i compile the job, it works. The erro...
by praj
Mon Jan 19, 2004 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: timestamp format convertion
Replies: 4
Views: 2657

thanx a lot :lol:
It worked perfectly 8) :lol:
by praj
Mon Jan 19, 2004 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: timestamp format convertion
Replies: 4
Views: 2657

timestamp format convertion

Hi all, I am reading a datetime as a string(since, not able to read it as a timestamp in DS) from a text file e.g. "23-OCT-03 01:28:28". Now i need to convert this into a timestamp with format <yyyy-mm-dd hh:nn:ss> e.g. "2003-10-23 01:28:28". I have tried string to timestamp conv...