Search found 31 matches

by deeplind07
Wed Oct 19, 2011 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal to higher decimal field mapping error
Replies: 3
Views: 1794

Re: decimal to higher decimal field mapping error

your data types should be source column a (decimal(19,2)) target column b (decimal(22,5)) you wont need to use DecimalToDecimal fuction as this will be implicit conversion. Also you are receiving value as 000000000000000.00, because you must have have set you default value as 0, because the record i...
by deeplind07
Wed Oct 19, 2011 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I/O thoughput
Replies: 7
Views: 3106

Re: I/O throughput

you were suppose to search word 'contention' in a dictionary...Just a joke :) sorry if you find this comment rude But as jwiles said., you are facing i/o contention...multiple processes reading the same file..there is going to be a resource sharing between these processes..which is causing the slow ...
by deeplind07
Tue Oct 18, 2011 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in implementing join logic
Replies: 11
Views: 3923

have you tried using a filter for D1.C3='' and D1.C4='' condition before or after you use the join stage.
In join stage u can have
D1 left join D2 where D1.C1=D2.C1 and D1.C2=D2.C2 condition
by deeplind07
Mon Oct 17, 2011 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sort funnel and apt_grid_partition
Replies: 2
Views: 1720

Re: sort funnel and apt_grid_partition

$APT_GRID_PARTITIONS Specifies the number of partitions for each compute node.
Hence when you specify 4, the data is partitioned on 4 partitions, but when it is 1 all the records go to a single partition. and hence the output is desired output
by deeplind07
Mon Oct 17, 2011 10:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer code
Replies: 5
Views: 1426

what do u mean by UNVARYING method and FURTHER compilation
by deeplind07
Mon Oct 17, 2011 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: header and trailer validation
Replies: 10
Views: 5789

In my project i handelled this requirment in unix by writing a small shell script
head -1 sourcfile> header_file
tail -1 sourcefile>trailer_file.
by deeplind07
Mon Oct 17, 2011 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on scenario
Replies: 4
Views: 2670

you can also use a start loop and end loop stage and loop through your job 10 times
by deeplind07
Mon Oct 17, 2011 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer code
Replies: 5
Views: 1426

Transformer code

Could some one please tell me why tranformer logic is compiled as C++ and why not other stages?

Thanks!!
by deeplind07
Mon Oct 17, 2011 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter for Sequential file with pipe & comma in data
Replies: 14
Views: 11684

How about asking the source system to send you the field in which you are expecting pipe,comma as data itself in quotes(single, doulbe etc).
eg.

A|B|"C|"|D
by deeplind07
Mon Oct 17, 2011 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help in parallel Job design for below logic
Replies: 2
Views: 1422

As Ray suggested it is preferable to use user defined sql when fetching data from any database using stages like ODBC,Oracle etc.
your case is a perfect example for such requirements
by deeplind07
Mon Oct 17, 2011 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning level in Datastage jobs
Replies: 2
Views: 3762

Warning level in Datastage jobs

Where in Datastage can i change the 'warning level limit' to maybe 5.By default it shows as 50 but when i change it to 5 in director, this affects only my userid, if i run the job with some other user id the value shows 50 again. also let me know if we can set these warning levels individually for j...
by deeplind07
Mon Oct 17, 2011 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage variable sequence
Replies: 3
Views: 1349

Transformer stage variable sequence

Hi,

What i wanted to know is that if there are 3 stage variables defined in a transformer namely a,b,c..which stage variable is dervied first, is there some sore of orderring that needs to be mentioned in the transformer properties.

Thanks!!
by deeplind07
Sun Oct 16, 2011 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Stage Behaviour
Replies: 4
Views: 8264

Re: Change Capture Stage Behaviour

You need to sort your input as change capture stage assumes that the input is sorted