Search found 153 matches

by soumya5891
Sun Aug 12, 2012 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column to row transpose in datastage
Replies: 2
Views: 3677

Column to row transpose in datastage

I have a requirement where I have to transpose records from row to column like the followings. Input records coming from flat fie as follows A,B,1,2,3,4,5,6 C,D,1,2,3,4,7,8 E,F,2,5,4,7,8,9 Considering the first two fields are the business key and rest are the different measure value. Output records ...
by soumya5891
Wed Aug 08, 2012 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 Connector Stage
Replies: 3
Views: 3414

Re: Db2 Connector Stage

Here table action you mentioned as Append. So the new records will be loaded into the table. No truncation will be occurred here.

If you mention table action is truncate then it will truncate the table then load
by soumya5891
Sat Aug 04, 2012 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Round Robin partition
Replies: 3
Views: 3406

Regarding Round Robin partition

I tried to generate unique number (in sequence) without any breakings between them So I have applied the following formula in a transformer where only this operation is happening. Formula : @INROWNUM * @NUMPARTITIONS + @PARTITIONNUM - @NUMPARTITIONS - 1 And also making the input partition to the tra...
by soumya5891
Tue Jun 12, 2012 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assembly editor is not openning
Replies: 4
Views: 2552

Assembly editor is not openning

First time I am usig the XML stage (introduced in 8.5) . When I am clicking on the Edit Assembly button, assembly window is not openeing. is it the issue with the patch installation or some other thing is happening?
by soumya5891
Fri Jun 01, 2012 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter values become hardcoded
Replies: 5
Views: 3084

Is this the existing issue with datastage 8.5 ?
by soumya5891
Wed May 30, 2012 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max Date Problem
Replies: 6
Views: 2800

Re: Max Date Problem

You can do the same thing by using one sort and one remove duplicate stage.
First sort on the business keys and date(descending).
Then perform a remove duplicate on the basis of business keys to retrieve the max date.
by soumya5891
Sun May 27, 2012 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter values become hardcoded
Replies: 5
Views: 3084

Yes Ray,
The parameters are resolved (to fixed values) without being prompted for values when use the data browser.
by soumya5891
Sun May 27, 2012 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter values become hardcoded
Replies: 5
Views: 3084

Parameter values become hardcoded

My job design is DB2 connector------>copy-------> Dataaset. Now when I tried to view data in the db2 connector stage the parameter values used in the db2 connector database property become hard coded.Not only that if any parameter value being passed in the sql query itself then it is also hard coded...
by soumya5891
Wed May 09, 2012 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage nullability issue
Replies: 4
Views: 2098

If we convert all the measure of the aggregator to nullable no with using any null handling then input to aggregator in that case is not null.
by soumya5891
Wed May 09, 2012 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage nullability issue
Replies: 4
Views: 2098

Is there any dedicated logic for making the aggregated output columns in aggregator stage always nullable?
by soumya5891
Tue May 08, 2012 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage nullability issue
Replies: 4
Views: 2098

Aggregator stage nullability issue

I have three columns as below

Key1(Not nullable) Key2(Not nullable) Amount(Not nullable)

Now when I am aggregating Amount field on the basis of the Key1 and Key2.
Now when I map the output the field Amount automatically becomes Nullable.
Is it the default behaviour of the aggregator stage?
by soumya5891
Fri Mar 16, 2012 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to separate charcters and integers?
Replies: 17
Views: 11094

If the column length is greater then 6 ,say 8 then it will not work.According to nareshketepald the length of the field is 50.
by soumya5891
Thu Mar 15, 2012 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to separate charcters and integers?
Replies: 17
Views: 11094

What is the length of the VARCHAR field? And are you using Datastage 8.5?
by soumya5891
Wed Mar 07, 2012 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage in datastage 8.5
Replies: 10
Views: 9562

In this regard also one thing needs to be performed that the transformer must run in sequential mode.
by soumya5891
Tue Feb 14, 2012 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert then update on DB2 connector gives warning
Replies: 7
Views: 8772

Please try to find the unique index.It may happen you have unique index on one field and you are trying to insert same value of that field as before.
But when you are doing update first then that value changed so no duplicate in new value for that field so that can be inserted easily.