Search found 80 matches

by venkatvelpula
Tue Jul 15, 2008 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Installation
Replies: 13
Views: 3568

Teradata Installation

Hi,

Anyone, Please let me know the hardware and software components required for using teradata database stage for both server and parallel jobs.

I am trying find out information about installing teradata utilities foundation on all nodes for parallel jobs. If any one has links or docs, let me know.
by venkatvelpula
Mon Jun 16, 2008 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NVL Function support for parallel Oracle Stage
Replies: 3
Views: 1741

NVL Function support for parallel Oracle Stage

I am trying to retrieve decimal fields using user defined sql thorugh oracle enterprise stage. I am trying to replace decimal field null values to '0'. The query working fine without NVl Function but it's not working with NVL. Let me know the possible solutions. We have to do it through oracle query...
by venkatvelpula
Wed Apr 30, 2008 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Records in Join
Replies: 11
Views: 4948

Do you want records which don't have a match in the join in the rejected records? If so, you can use a left outer join(by properly ordering the links) and in a downstream transformer you can check if a not nullable column(you should pass a not nullable column to the output from the right link in th...
by venkatvelpula
Wed Apr 09, 2008 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Additional Info:

When I try to execute c++ code..It's giving the following error

0509-036 Cannot load program because of the following error

0509-108 The .loader section does not exist.

Is that the problem?

can we execute the c++ code on AIX5?
by venkatvelpula
Wed Apr 09, 2008 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Even if I use user defined variable, I am giving the total path with object file name for linking object code to datastage. Where do you want me to use the user defined varaible?
by venkatvelpula
Tue Apr 08, 2008 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

I do have $LIB_PATH only. So I changed the path to this environmental variable defalut value.

I can't find $LD_LIBRARY_PATH variable. Looks like it doesn't exist here.
by venkatvelpula
Tue Apr 08, 2008 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

I tried that already and still not working.
by venkatvelpula
Tue Apr 08, 2008 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiling and linking a parallel routine
Replies: 15
Views: 10201

piyu wrote:Done it!

Used the "MAkefile" script which come with the installation cd to create shared object.

The option it uses on AIX are: -G -qmkshrobj=1000
Can you please explain clearly?
by venkatvelpula
Tue Apr 08, 2008 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Where can I find sample code(built in) for parallel routines?
by venkatvelpula
Tue Apr 08, 2008 12:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Tried after adding the new parameter LD_library_Path but same error.

I don't have access to create or put files in to LD_library_Path. So I kept those files( cpp code and generated object file) under the Datastage/PXEngine.

Is that the problem?
by venkatvelpula
Tue Apr 08, 2008 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Tried after adding the new parameter LD_library_Path but same error.

I don't have access to create or put files in to LD_library_Path. So I tried to put those files under Datastage/PXEngine.

Is that the problem?
by venkatvelpula
Tue Apr 08, 2008 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

#include <string> #include <stdlib.h> #include <stdio.h> using namespace std; //================================ int PMExists(string& elem) { size_t startpos = elem.find_first_not_of(" \t\n"); size_t endpos = elem.find_last_not_of(" \t\n"); int ans =0; if((string::npos != sta...
by venkatvelpula
Tue Apr 08, 2008 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

#include <string> #include <stdlib.h> #include <stdio.h> using namespace std; //================================ int PMExists(string& elem) { size_t startpos = elem.find_first_not_of(" \t\n"); size_t endpos = elem.find_last_not_of(" \t\n"); int ans =0; if((string::npos != sta...
by venkatvelpula
Tue Apr 08, 2008 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine error
Replies: 14
Views: 5066

Parallel routine error

I am getting the following error when i used parallel routine in a transformer.I wrote c++ code and i compiled and produced *.o file and i used that file in the library path of the parallel routine dialogbox. I got following fatal error when i ran the job and then it aborted. Transformer_3: Failed t...
by venkatvelpula
Fri Jan 18, 2008 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates problem
Replies: 0
Views: 610

Remove duplicates problem

Guys, I have 5 columns in the source, out of that 2 columns are keys. I have three non-key columns, out of that 2 columns are "from_date" (col4)and "to_date"(col5) goa is to remove duplicated based on key values but some duplicates are valid based on from_date and to_date. Let's ...