Search found 41 matches

by nayanpatra
Tue Dec 03, 2013 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete and Upsert Requirement
Replies: 1
Views: 1767

Perform the delete and insert operation sequentially and not in parallel. Maintain a row level commit between the operations.
by nayanpatra
Tue Dec 03, 2013 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_COPY_TRANSFORM_OPERATOR
Replies: 1
Views: 2500

The library files of the transformer stage was not copied to the compute node from the conductor node. In order to copy the library files during runtime, you need to set the APT_COPY_TRANSFORM_OPERATOR to TRUE. Else, you may also perform a rsync. A sample command to copy the files from source server...
by nayanpatra
Tue Dec 03, 2013 11:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to process XML file with repetitive elements using the X
Replies: 6
Views: 3642

In the XML input stage, in the Transformation Settings, tick the box for repitition element required.
by nayanpatra
Fri Jun 01, 2012 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage
Replies: 4
Views: 2199

Can you please clarify which load/write method and partitioning method you are using in the enterprise stage and the connector stage?
by nayanpatra
Fri Apr 06, 2012 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: maximum length of varchar Stage variable
Replies: 4
Views: 5912

The maximum length of a varchar field can be of 255.
by nayanpatra
Fri Jan 20, 2012 2:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove records based upon constraint
Replies: 6
Views: 2466

Please try the below logic

Trim(to_transf.STATUS) <> 'Agent'

to restrict the incoming records.
by nayanpatra
Tue Oct 18, 2011 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting warning in DB2 stage
Replies: 2
Views: 1997

While creating the table is the table data partitioned? Then the distribution of data among database partitions is not as desired. Also, if the database is data partitioned then a better approach is to search in a particular data partition itself. Example: Suppose a table is data partitioned based o...
by nayanpatra
Tue Oct 18, 2011 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Handling with DB2 Stage
Replies: 1
Views: 1735

Try using an exception table in a DB2 connector stage. It will automatically route the duplicate primary keys to the exception table.
by nayanpatra
Tue Oct 18, 2011 7:18 pm
Forum: General
Topic: Job running long time
Replies: 1
Views: 1240

Are you updating any batch control table in any database? Then you may check the connection between the datastage and the database. Also check for the file system.
by nayanpatra
Thu Mar 10, 2011 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Job executable (Job Run without GUI)
Replies: 3
Views: 3264

Yes datastage is capable of exporting executables only without GUI.
by nayanpatra
Wed Mar 09, 2011 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Implement aagregate functionality without using aggregate
Replies: 3
Views: 3905

You can use transformer stage and implement the below logic in the stage variables to produce the funcionality similar to an aggregator stage. The pre-requisite to use this stage is that the data should be sorted on the keys columns that will be used for group by clause, here it is abc, def, gkt, et...
by nayanpatra
Wed Mar 09, 2011 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading Data into Oracle partitions based on months
Replies: 1
Views: 2074

The table should be database partioned based on the column date eg. FISCAL_MONTH. This will enable the database engine to configure the data according to the partitions. Datastage will not require any special treatment to load the data in a particular partition. However, if a table is database parti...
by nayanpatra
Mon Mar 07, 2011 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel jobs hanging on OSH script (...) step
Replies: 1
Views: 1896

May be the DB tables are in load pending state then.
by nayanpatra
Mon Mar 07, 2011 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup problem
Replies: 4
Views: 2778

When you are performing a lookup on 2 columns in the same stage, then the output is true only when both the conditions are met i.e. basically AND logic is being implemented. Only when you find a match for both the columns, the result is a valid one.
by nayanpatra
Mon Mar 07, 2011 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic required
Replies: 1
Views: 1996

1. Filter all the records according to the REC_TYPE. LINK1:(REC_TYPE = '1') CUS_TYPE,CUS_ID,REC_TYPE,DATE,DETAIL C,123,1,2011/02/28,XXXA C,100,1,2011/02/28,AAA LINK2:(REC_TYPE = '2') CUS_TYPE,CUS_ID,REC_TYPE,DATE,DETAIL C,123,2,2011/02/28,XXXB C,100,2,2011/02/28,AAA1 LINK3:(REC_TYPE = 'D') CUS_TYPE,...