Search found 157 matches

by saikrishna
Wed Jul 05, 2006 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 4600

Eric We wrote parallel routines with the following options 1. Used object as object-type 2. Given External routine name 3. In Library path, we gave the path of the object file(.o) 4. In Type, we gave "External Function" We used the following Makefile to generate object code # =============...
by saikrishna
Mon Jul 03, 2006 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 4600

Parallel Routine

Hi I have written C code in Unix env. the c program is as follows: include<stdio.h> #include<string.h> #include<malloc.h> char * sayhello(char *Arg1) { char *s1; const char *s2="hello"; s1=(char *)malloc(20); s1="hi"; strcat(s1,s2); return(s1); } I have created a parallel routine...
by saikrishna
Fri Jun 30, 2006 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instnces in both Parent-Child Jobs
Replies: 2
Views: 1033

Multiple Instnces in both Parent-Child Jobs

Hi ALL We have designed 2 jobs in a parent-child relationship way, where the parent job is calling the child job using UtilityJobRun for each row being extracted in the parent job. We are using "Multiple Instance" Option in both child as well as parent jobs to have parallelism. Our require...
by saikrishna
Sun May 28, 2006 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 3949

Eric If we design a seperate parallel routines for each C routine files...It wont solve my problem...as Inside the second C file...It uses the functions of first file....So I need to integrate in C/Unix environment not at datastage level..... kumar_s The two files are in the same location in Unix......
by saikrishna
Fri May 26, 2006 12:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 3949

Yes Ray.... We are using object option in object type instead of library option..... the path of the object file along with the object file name is been specified in Library path The object file is visible in the Library path..... If we make a single file containing two functions (fun1 and fun2) int...
by saikrishna
Thu May 25, 2006 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 3949

Parallel Routine

Hi We have two C functions(in Unix)..namely fun1 and fun2...which are present in different files. We are calling fun2 from fun1. The file that contains fun1 has the signature of the fun2. Now in DataStage..We created parallel routine, that is calling fun1 (which intern calls fun2)..... This situatio...
by saikrishna
Tue Mar 15, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting error while opening datastage director
Replies: 5
Views: 2603

Getting error while opening datastage director

Hi, I installed DataStage 7.1 client on my system. We can't able to open datastage director for running job. I tried to connect to near by datastage server. I can able to open other 3 client tools, i.e. manager, designer, administrator. but, It is giving the following error message while opening dir...