Search found 153 matches

by soumya5891
Thu Dec 29, 2011 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Message--help me
Replies: 7
Views: 3515

Re: Warning Message--help me

What is the target datatype for CLAIM_ID.This also need to convert from Nullable to not nullable
by soumya5891
Thu Dec 29, 2011 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get max count of 3 columns
Replies: 2
Views: 2068

In a sort stage sort on A(Ascending) then B(Descending) and C(Descending).And hash partition on A.Now use a remove duplicate stage on the basis of A.You will get the maximum occurrence.
by soumya5891
Tue Dec 20, 2011 12:34 am
Forum: General
Topic: Scenario in sequence job
Replies: 3
Views: 1409

I have desigened the whole job in the following way. Seq_Super I have two jobs job1 and job2.In both of the jobs I have ticked Do not checkpoint run option. Again I have a sequence Seq_Sub where job3 and job4 are there.For both of the cases I have unticked Do not checkpoint run option. Now I include...
by soumya5891
Mon Dec 19, 2011 10:37 am
Forum: General
Topic: Scenario in sequence job
Replies: 3
Views: 1409

Scenario in sequence job

I have a sequence job with the following design Job1----->Job2----->Job3----->Job4 My requirement is if Job1 or Job 2 aborts then the sequence job will start from begging.And if Job3 or Job4 aborts then the sequence job will start from the aborting point. I have checked Do not checkpoint run for Job...
by soumya5891
Wed Dec 14, 2011 10:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WAVES Concept in Datastage
Replies: 6
Views: 4586

Yes,am also searching for the same
by soumya5891
Wed Dec 14, 2011 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WAVES Concept in Datastage
Replies: 6
Views: 4586

WAVES Concept in Datastage

What is the WAVES concept in datastage?How it helps to improve the performence?
by soumya5891
Tue Dec 13, 2011 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage
Replies: 1
Views: 1803

Re: Datastage

You can do the both look up in continue,continue mode.Then in a filter check 1 and 2.If anyone of these satisfy then record will be passed.
by soumya5891
Tue Dec 06, 2011 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Logic
Replies: 16
Views: 7044

1. After extraction of b add a transformer and default a colunmn say COL1 with some default value and declared as nullable yes 2. Then first look up with a an b with a as stream and set both as continue. 3.Look up the record set with with c.In the look up condition gives COL1 is null.And set the opt...
by soumya5891
Sat Dec 03, 2011 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Logic
Replies: 16
Views: 7044

1. Make a union of Id from Table b and Table c in your extraction query.
2. Lookup Table a and the above extraction and mention lookup condition not matched to failure.
by soumya5891
Thu Nov 17, 2011 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job process
Replies: 3
Views: 1831

Re: Parallel job process

Are you using Upsert method or you are doing insert and update seperately in different stages
by soumya5891
Wed Nov 02, 2011 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job finished succesfully with fatal error
Replies: 5
Views: 2401

Is there extra patch that needs to be installed to avoid this situation
by soumya5891
Thu Oct 27, 2011 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job finished succesfully with fatal error
Replies: 5
Views: 2401

Job finished succesfully with fatal error

I have a parallel job with the following design Dataset----->surrogatekey------>target DB2 table I am using DB sequence as surrogate key generator.The user with which the job ran was not access to the particular DB sequence.So the job got fatal error.But instead of aborting the job it has been finis...
by soumya5891
Mon Oct 17, 2011 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage variable sequence
Replies: 3
Views: 1348

Re: Transformer stage variable sequence

If you defined stage variable like following way

sVar1
sVar2
sVar3

Then the order of execution will be sVar1 then svar2 then sVar3
by soumya5891
Sat Sep 03, 2011 1:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record Dropped
Replies: 18
Views: 10199

Re: Record Dropped

Is the field on which you are checking null is varchar ?
by soumya5891
Sun Aug 21, 2011 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Equi joins
Replies: 5
Views: 3355

In this case IDENTITY is user defined column can be created in a transformer stage.So in that case for every incoming record assign it's value to 1.Then in spite of being a not null column this field will not contain any null value.