Search found 6797 matches

by DSguru2B
Fri Jan 19, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage License
Replies: 12
Views: 4769

2 licenses.
by DSguru2B
Fri Jan 19, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

Not that i can think of right now. Maybe someone else knows and will shed some light on it.
by DSguru2B
Fri Jan 19, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserted value too large for column, row rejected.
Replies: 8
Views: 7483

Great. Thanks for sharing that with us. Now you can mark your post as resolved.
by DSguru2B
Fri Jan 19, 2007 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

Coming back to the "Why you are not using the Aggregator stage", inconsistant and inaccurate data is not the fault of the aggregator stage. Its the fault of how it was used. Take a small set of data, use the aggregator stage to build a job out of it. Test it out. If you have problems, we are here to...
by DSguru2B
Fri Jan 19, 2007 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

And thats where you are going wrong. You need to partition it by keys. Do this, provide Hash as partitioning and choose the three keys. Now run your job again. See what happens.
by DSguru2B
Fri Jan 19, 2007 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding rowmerger stage
Replies: 7
Views: 1321

Row merger stage gets all the columns and puts them together into a single string and spits it out to the 'merged column'. If you want the each row to be concatenated to a single output row then and only then check the 'multiple lines' option under the general tab. If you just want to merged columns...
by DSguru2B
Fri Jan 19, 2007 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

In the transformer, go to the stage properties, what partitioning are you providing?
by DSguru2B
Fri Jan 19, 2007 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with parallel job
Replies: 4
Views: 1036

This is due to the fact that the data is partitioned and executed on different nodes in parallel. One node could finish faster than the other and hence the shuffled behaviour. If you want the output to be in order, go to your output sequential file under 'Partitioning' tab, change the Collector Type...
by DSguru2B
Fri Jan 19, 2007 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding rowmerger stage
Replies: 7
Views: 1321

Do you have that new column in your target table?
by DSguru2B
Fri Jan 19, 2007 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key using sequence ?
Replies: 34
Views: 13356

Parametrize the start value and provide the start value during run time. You can store the last generated key in a file. During run time, the contents of that file can be passed to the job parameter.
by DSguru2B
Fri Jan 19, 2007 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

Yes you can. Add another stage variable say svSum. Put it after svCnt and before svPrevRow. Its derivation will be if input.key1:input:key2:input.key3 <> svPrevRow Then svSum Else svCnt + in.Amount Then again, if your running in sequential mode it will work, otherwise you need to partition on your k...
by DSguru2B
Fri Jan 19, 2007 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiler Logs
Replies: 8
Views: 3085

Is this just to check if the compiler is not there? If yes then i would say that the compiler, has been infact, removed as the job is not getting compiled. Why dont you go to the environment variable APT_COMPILER, check out its path, go to that path and verify it there.
by DSguru2B
Fri Jan 19, 2007 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in job sequencer
Replies: 4
Views: 942

Search on the error message. This has been covered before.
by DSguru2B
Fri Jan 19, 2007 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of calendar days
Replies: 8
Views: 1482

Re: Number of calendar days

ghostraider wrote:I need to subtract the greater date from the smaller one


Not too fond of ABS either but instead of checking which one is bigger using if then else, just a positive difference could be achieved using ABS.
by DSguru2B
Fri Jan 19, 2007 9:48 am
Forum: General
Topic: 'CS_TEXT_TYPE' not supported
Replies: 6
Views: 1906

I think the driver that is being used is not compatible with that data type. I think you need to get in touch with support and get a patch or a workaround.