Search found 35 matches

by Prince_Hyd
Tue Oct 08, 2013 3:58 am
Forum: General
Topic: How to handle NULL values coming from DB side?
Replies: 5
Views: 2587

How to handle NULL values coming from DB side?

Hello Folks

I have a source as DB and i'm getting NULL values from that so i want to replace them with char value eg(XXX) how can i perform it?



Thanks
by Prince_Hyd
Tue Sep 10, 2013 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we do performance tuning at buffer-level
Replies: 0
Views: 1295

Can we do performance tuning at buffer-level

Hello Folks

How can we do performance tuning at buffer level,please explain in detail




Thank You
by Prince_Hyd
Wed Sep 04, 2013 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation By row-wise
Replies: 4
Views: 2324

Hello Andy

Thanks for your solution, it worked perfectly!
by Prince_Hyd
Wed Sep 04, 2013 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 4528

Hello Chullet


i'm not getting wat you are saying



Thanks
by Prince_Hyd
Wed Sep 04, 2013 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation By row-wise
Replies: 4
Views: 2324

Hello Parsson

I took one stagevar for deptno and given logic like this

StageVar = deptno

If deptno = StageVar Then S1+Sal Else Sal --------------- S1

but i'm not getting the expected result


Thanks
by Prince_Hyd
Wed Sep 04, 2013 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation By row-wise
Replies: 4
Views: 2324

Aggregation By row-wise

Hello Folks I have a scenario similar to this Source Target Dept,sal Count 10,100 100 10,110 210 20,200 200 20,210 410 How to perform this. Thanks
by Prince_Hyd
Wed Sep 04, 2013 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 4528

Hello Eric

I got the solution by using the below mentioned logic

IF deptno = deptno Then deptno+1 Else 1

this one gave me exact solution.

Thanks for your reply
by Prince_Hyd
Wed Sep 04, 2013 3:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to count repeated rows
Replies: 9
Views: 4528

Logic to count repeated rows

Hello Folks I have a scenario similar to this Source Target 10 1 10 2 10 3 20 1 20 2 30 1 30 2 and i want the target as mentioned above
by Prince_Hyd
Thu Jul 25, 2013 12:41 am
Forum: General
Topic: How to remove alphanumeric characters using transformer?
Replies: 4
Views: 2427

hey ray

sorry for that i dint noticed that properly i want to remove those symbols like @,$
by Prince_Hyd
Thu Jul 25, 2013 12:15 am
Forum: General
Topic: How to remove alphanumeric characters using transformer?
Replies: 4
Views: 2427

How to remove alphanumeric characters using transformer?

Hi Folks

i have a source like this

ID
122133@324
$324234423
$324342346

i want to remove those alphanumeric characters,how can i achieve it.


Thanks
by Prince_Hyd
Sun Jul 21, 2013 12:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does 'output row only once' will do in filter
Replies: 15
Views: 7962

Hi ray I got error like this in log file Filter_1:Error occured during initialize from Args() Filter_1:Parse error;Expected comparision operator('>','<')after literal,got:<eof>.(....) main_program:Creation of a step finished with status = Failed see if i give condition like below it works fine where...
by Prince_Hyd
Sat Jul 20, 2013 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does 'output row only once' will do in filter
Replies: 15
Views: 7962

Hi ray

Failure means when you compile you get blue line when you run if success green will come else red for failure so like that i got red line.

Any how i find another solution like in filter we can keep like deptno <=40 where it will cover all the dept's.



Thanks.
by Prince_Hyd
Fri Jul 19, 2013 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does 'output row only once' will do in filter
Replies: 15
Views: 7962

i have input table like this cust_id,cus_name,deptno 1,uma,10 2,varun,20 3,siva,30 1,rathode,40 and in filter i mentioned first where condition as 1) where =deptno=10 to output link 0 and second where clause as 2)Where =deptno=10 to output link 1 and third where clause as 3)Where = deptno=20 to outp...
by Prince_Hyd
Fri Jul 19, 2013 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does 'output row only once' will do in filter
Replies: 15
Views: 7962

Hey Ray

I tried your solution but it din't worked.Any other way?




Thanks
by Prince_Hyd
Thu Jul 18, 2013 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What does 'output row only once' will do in filter
Replies: 15
Views: 7962

Re: It will not pass the record to second where condition...

Tats superb explanation.I got it.But as you mentioned in second condition that we have to write deptno in(10,20,30) when i'm writing this condition in filter compilation is going fine but while i run the job i'm getting error how come?? i wrote like First condition deptno = 10 Second condition deptn...