Search found 111 matches

by mahadev.v
Mon Apr 27, 2009 12:55 am
Forum: General
Topic: Generic job
Replies: 6
Views: 2860

First thing that comes to my mind in a parallel job is using RCP. Any specific reason to prefer server jobs? Is there an equivalent property to RCP in server jobs?
by mahadev.v
Wed Apr 22, 2009 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to use a record for update.
Replies: 11
Views: 8003

What happens when you try to insert the records? Did you check if there is a record in the table with the same keys as the update record?
by mahadev.v
Sun Apr 19, 2009 11:18 pm
Forum: General
Topic: Stop/Start/Certify scripts for WAS, IAS, DB2
Replies: 2
Views: 1342

I believe you will find the scripts under IBM/WebSphere/AppServer/bin. I think the script is called "startServer.sh" and one more "Status.sh" to check the status of the WAS.
by mahadev.v
Thu Apr 16, 2009 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning with Routine return value
Replies: 15
Views: 9974

Uncheck the box which says something like "Log warnings for stages that dint finish ok" in the sequence properties.
by mahadev.v
Thu Apr 16, 2009 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job execution abort
Replies: 5
Views: 2525

Looks like a problem with the external c++ routine to me. What does this routine do? Copy paste the code here.
by mahadev.v
Mon Apr 13, 2009 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Error when loading data in Oracle Database in Upsert
Replies: 5
Views: 1379

Could it be a dead lock on the record in parallel mode? Try hash partitioning the data on the keys and run it in parallel.
by mahadev.v
Mon Apr 13, 2009 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XM Input Stage
Replies: 2
Views: 1460

The 2GB limit on the DataSet is imposed by the operating system constraints and not a DataStage constraint (mostly for the data files in the resource disk). Number of rows is never a problem, and the size is also not a constraint as long as it is not constrained by the OS.
by mahadev.v
Mon Apr 13, 2009 3:01 am
Forum: General
Topic: Modify Stage in parallel jobs
Replies: 4
Views: 1978

Modify stage does not create extra processes. It runs on the output link of the previous stage. So it would be slightly faster than a transformer. AFAIK, the RCP option in each stage also creates a modify operator to propagate or drop the columns.
by mahadev.v
Thu Apr 09, 2009 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Duplicate Records
Replies: 7
Views: 4314

BugFree, You would get the result but it will be 6 records instead of 3 :wink: . Ashish, if you are sure that the records are already in the required order then you can generate a surrogate key for each of the links using a Row generator stage and then join the data on this field.
by mahadev.v
Wed Apr 08, 2009 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler error
Replies: 2
Views: 1455

Is that the complete error message?
by mahadev.v
Sun Apr 05, 2009 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator of type "APT_TSortOperator": will partiti
Replies: 1
Views: 3562

Search on "will partition despite the preserve-partitioning flag on the data set on input port" for the first warning. As for the second warning you can use the property in the Aggregator stage called "Default to Decimal output". And change the precision to match the output field.
by mahadev.v
Sun Apr 05, 2009 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Memory problem with Funnel and Transformer
Replies: 7
Views: 2426

DataStage inserts a buffer operator on each input link to the funnel stage. So for 100 input links, 100 buffer operators, 100 processes. If it is a continuous funnel try using the APT_BUFFERING_POLICY set to "NO_BUFFERING".
by mahadev.v
Thu Apr 02, 2009 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to use server routine in parallel jobs
Replies: 1
Views: 1020

Yes. Transform routines in Basic Transformer. Before/After subroutines in Job properties or in basic transformer before/after subroutine tab.
by mahadev.v
Tue Mar 31, 2009 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve other than Pivot
Replies: 10
Views: 3285

Any specific reason why you don't want to use the Pivot stage? A custom Build Op stage can be used, but involves a lot of coding.
by mahadev.v
Wed Mar 18, 2009 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete jobs from project .
Replies: 9
Views: 4420

In the designer, right click on the job name and select delete.