Search found 773 matches

by keshav0307
Mon Sep 25, 2006 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stringtodecimal conversion error
Replies: 6
Views: 2172

Another thing i noticed is :
when the input is 00000000, StringToDecimal does not work.
by keshav0307
Sun Sep 24, 2006 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stringtodecimal conversion error
Replies: 6
Views: 2172

What happens when you try to convert it to decimal[8,8]? Does it give any error?
it convert any values to 0.00000000
by keshav0307
Fri Sep 22, 2006 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stringtodecimal conversion error
Replies: 6
Views: 2172

Stringtodecimal conversion error

I have input of char( 8 ), how to convert it to decimal ( 8,8 ) in a transform stage.
it's working fine to convert decimal ( 8,0 ).
by keshav0307
Fri Sep 22, 2006 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 7543

Yes remove duplicate will work,
as i and Ray.Wurlod mentioned earlier, rule is same as remove duplicate.

partition and sort on on F1 asc, F2 Desc
and keep 1st
or
partition and sort on on F1 asc, F2 Asc
and keep last
by keshav0307
Fri Sep 22, 2006 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assigning Column value from previous row column value
Replies: 4
Views: 967

sorry the varibale value shoukd be

Sprev=(If LOC<>'' Then LOC Else Sprev)
by keshav0307
Fri Sep 22, 2006 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assigning Column value from previous row column value
Replies: 4
Views: 967

Use transformer stage:
define a stage varialbles

Sprev=(If LOC='' Then LOC Else Sprev)

and map this variable to the LOC Column
by keshav0307
Fri Sep 22, 2006 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 7543

it is tested one, there may be some mistake you are doing: the order of defining stage variable is very important, i just noticed it was wrong earlier. try this you can get the result by using combination of a SORT and transformation Stage....... from file Sort on F1 Asc, F2 desc; In Tnasform stage ...
by keshav0307
Fri Sep 22, 2006 4:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Sequence Job
Replies: 4
Views: 1666

check if you have set "Reset if Required" for the job
by keshav0307
Fri Sep 22, 2006 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row generator
Replies: 4
Views: 1074

Is it possible in Oracle to pass any value in FK column?? NO. so how can you pass in Dstastage.... yes you can pass any value, if you have disabled the contrant in the Table...and before enabling the constrants in table, check what are the different values in the table for deptno column, insert all ...
by keshav0307
Fri Sep 22, 2006 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage ODBC with Datastage PX 7.01 ?
Replies: 8
Views: 2180

just call IBM/Ascential support...
by keshav0307
Thu Sep 21, 2006 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user-defined sql queries-teradata stage is destination
Replies: 6
Views: 1854

Yes, you can use Teradata API stage plugin.... if you don't have it get it from ascential and register the plugin..
by keshav0307
Thu Sep 21, 2006 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage ODBC with Datastage PX 7.01 ?
Replies: 8
Views: 2180

check the cutomize option in the repository area.......
If its not there you can get it from ascential, or then register the plugin
by keshav0307
Thu Sep 21, 2006 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 7543

Its same funda as used to remove duplicate your data is like F1 F2 F3 --------------- 1 2 3 1 4 2 6 7 8 6 9 4 after sorting you will get F1 F2 F3 --------------- 1 4 2 1 2 3 6 9 4 6 7 8 after the tansform one link will give you F1 F2 F3 --------------- 1 2 3 6 7 8 Other link will give you F1 F2 F3 -...
by keshav0307
Thu Sep 21, 2006 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage ODBC with Datastage PX 7.01 ?
Replies: 8
Views: 2180

Yes, through ODBC interprise Database stage.
by keshav0307
Thu Sep 21, 2006 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator transformation
Replies: 19
Views: 7543

you can get the result by using combination of a SORT and transformation Stage....... from file Sort on F1 Asc, F2 desc; In Tnasform stage declare two stage variable VNext and VPriv VNext=F1 Vpriv=Vnext have two output from tansform 1st link constraint Vpriv<>Vnext 2nd link constraint Vpriv=Vnext