Search found 28 matches

by samarvind
Fri Jun 06, 2014 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage handling NULL replacing with another column
Replies: 4
Views: 2215

Thanks Ray, I thought so. Only reason I wanted to see if this functionality can be achieved in Modfiy stage is that I wanted to reduce the usage of transformer wherever possible but given the scenario I might have to use one I think.
by samarvind
Thu Jun 05, 2014 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage handling NULL replacing with another column
Replies: 4
Views: 2215

Modify Stage handling NULL replacing with another column

Hi,

I am trying to use the Modify Stage to handle Null for one of the column by replacing with value from another input column. Is it possible ?

Specification that I have tried but didn't work looks similar to the one below.

Ex. COL2 = handle_null (COL2,COL1)

Thanks
Arvind
by samarvind
Thu Oct 24, 2013 2:51 am
Forum: General
Topic: DataStage objects information into a relational table
Replies: 4
Views: 3546

Hi Ray, I don't have any idea about XMETA database. How do we find out that XMETA database is available in first instance? How to access it? What Stage in DataStage to be used to access the data in XMETA database? Could you point me to the XMETA DATABASE dictionary or any documentation that you may ...
by samarvind
Wed Oct 23, 2013 10:03 am
Forum: General
Topic: DataStage objects information into a relational table
Replies: 4
Views: 3546

DataStage objects information into a relational table

Hi, We have A requirement to store all the datastage components information into an Audit table having following metadata PROJECTNAME (Name of the project) OBJECTNAME ( like Jobname, Sequence, tabledefinition,shared container..etc) OBJECTTYPE (Job or sequence or shared container or others) FOLDER (D...
by samarvind
Fri Aug 30, 2013 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine help and solution recommendation needed
Replies: 8
Views: 4000

Thanks Arndw. I searched further and then got this link to understand the steps to compile the C code; however, I dont know where the object file would get created . I searched in the directory where I kept the C code but it is not there . Also, I don't have much knowledge about buildOps; however, e...
by samarvind
Thu Aug 29, 2013 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine help and solution recommendation needed
Replies: 8
Views: 4000

I am looking for the method of how to compile the written C code in Unix and to generate the object file to refer that in parallel routine.
i.e.
What is the compilation command?
Where will the object exists after compilation?
by samarvind
Thu Aug 29, 2013 8:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine help and solution recommendation needed
Replies: 8
Views: 4000

But still looking for a parallel routine to make it bit more reusable. Any help please how to use it?
by samarvind
Thu Aug 29, 2013 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Touch File mechanism
Replies: 8
Views: 5606

Hi, We have arrived at a solution in UNIX to implement the touch file mechanism with the following steps using a UNIX script. 1) Script touches a file in a directory where all the source file arrives 2) Based on the modified date of the touch file, look for any files in the directory <= Touch file m...
by samarvind
Thu Aug 29, 2013 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine help and solution recommendation needed
Replies: 8
Views: 4000

Thanks ArndW. You are a star :) - Double convert function worked. used the following simple steps: stagevar1 - "0123456789" Stagevar2= Convert(Convert(stagevar1,'',inputdata),'',inputdata) It returned all Numeric value. Great. Spent unnecessary effort researching parallel routines, even le...
by samarvind
Thu Aug 29, 2013 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine help and solution recommendation needed
Replies: 8
Views: 4000

Parallel Routine help and solution recommendation needed

Hi Members, I have a requirement to standardize the incoming telephone number data in few columns to remove all alphabets, special characters and return only number. Ex. If I have a data like "(404)- Ns@-(0123456789)" it should strip of all Symbols, Special characters, alphabets and return...
by samarvind
Mon Jun 03, 2013 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete and Upsert Requirement
Replies: 1
Views: 1774

Delete and Upsert Requirement

Hi, I have a requirement where I need to delete an incoming row from table 1 and insert or update a row into table-2. At the moment, we have delete and insert option where I delete the record from table-1 using a user-defined query and insert user-defined query to insert the row; however, we are fac...
by samarvind
Tue Apr 16, 2013 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ check for Successful Message Post
Replies: 1
Views: 1351

MQ check for Successful Message Post

Hi, My requirement is to create & post xml messages to a Message Queue and if successful update the source oracle table with the status for the corresponding message source record. To tie back the rejected xml message to the source record, I am trying to pass the "PRIMARYKEY" col to th...
by samarvind
Tue Oct 23, 2012 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connection
Replies: 3
Views: 2101

Thanks Chulet for your quick response. I didn't notice that it establishes connection at the start. I may have to request DBA to bump it up. However, just to understand, when I worked on Server jobs I don't think I have faced such issues. Opening connections at the start, Isn't it a overhead for Dat...
by samarvind
Tue Oct 23, 2012 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connection
Replies: 3
Views: 2101

Oracle connection

Hi All, We have faced a strange error in DataStage at the target Oracle stage saying "ORA-03135 Oracle Connection Lost". My parallel job design has source file input -> transformations-> Write to Oracle Since the data volume is so huge it takes minimum 2 hours to complete and atleast takes...
by samarvind
Fri Sep 21, 2012 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Locking mechanism within job
Replies: 6
Views: 3949

Yes, you are right, we have done such scenarios in server job wondering now how to do it in parallel ...