Search found 504 matches

by ShaneMuir
Sun Apr 13, 2008 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixedwidth file logic
Replies: 4
Views: 1248

Read the file in with a sequential file stage and send to a copy stage (or even a transform) . Split the stream into block 3 and block 4 records using the key as country code, sender code, al number and al line id; and filter out the block 4 records which are TM00. Then using a join stage join the r...
by ShaneMuir
Thu Apr 10, 2008 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation Logic
Replies: 6
Views: 1913

Also check what the format of your stage variables is set at. If you placing the value of the stage variable R into a char field with only a length of 2 but your variable has been set up as decimal 5 you might be only seeing the first leading zeros or something.
by ShaneMuir
Tue Apr 08, 2008 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Week Calculation
Replies: 4
Views: 1138

How can a week start with a saturday and end with a sunday? 2 day week or a 9 day week?
by ShaneMuir
Tue Apr 08, 2008 11:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Left outer join in Server jobs?
Replies: 2
Views: 3357

I thought by default it was left outer join? Just set the output to null if a value cannot be found in the lookup.
by ShaneMuir
Tue Apr 08, 2008 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I trim 3 leading zeroes of a decimal number
Replies: 4
Views: 2134

Will there always be 3 leading zeros? Also I don't see a decimal there? What formats are you going from and to (give lengths, precisions, scale)
by ShaneMuir
Mon Apr 07, 2008 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal loading problem
Replies: 4
Views: 917

Everytime I have seen a decimal format in EE it has come with the leading zeros. I agree it shouldn't have them there, but it always seems too.
by ShaneMuir
Mon Apr 07, 2008 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal loading problem
Replies: 4
Views: 917

Did you search for trimming leading zero's.
It can be done using something like:

Code: Select all

Trim(InLink.Col, "0","L")
by ShaneMuir
Sun Apr 06, 2008 10:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splittling columns into different pipeline in same job
Replies: 2
Views: 955

I would split the data into 2 streams, but keep all 5 columns on the second stream. Once you have the dim key you can then merge the streams back together using the original 2 columns as the key. (but not actually pass them to the output)
by ShaneMuir
Tue Apr 01, 2008 4:39 pm
Forum: General
Topic: SAPBW Load PACK and its performance.
Replies: 6
Views: 2503

How is the information currently loading into SAPBW? Is it possible that the actual lag in load time is actually the load process into BW? If so then using the load pack will probably not give much benefit.
by ShaneMuir
Thu Mar 27, 2008 8:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ModifyStage::Possible range limitation.
Replies: 4
Views: 4978

Actually another thing sort of off topic, why do you have a decimal without actually specifying any decimal places in the format? It should probably read something like [38,2] to allow for 2 decimal places?
by ShaneMuir
Tue Mar 25, 2008 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can not find metabag information for object
Replies: 7
Views: 7443

Ok more information. I have managed to resolve the problem by placing a copy stage before the lookup. Sql Sql | | | | V V Sql ---> Lkp1 --rej_link--> Cpy ---> Lkp2 ---> Xfm ---> Sql | | | rej | | V V odbc odbc Above is how the job looks now. What I failed to mention earlier - and this is probably im...
by ShaneMuir
Tue Mar 25, 2008 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can not find metabag information for object
Replies: 7
Views: 7443

Nripendra Chand wrote:Lookup condition uses tranformer functions. this is why this error message is coming like this.
Yes - but why is it occuring?
by ShaneMuir
Tue Mar 25, 2008 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can not find metabag information for object
Replies: 7
Views: 7443

can not find metabag information for object

Hi All, Has anybody come across this error before: "Internal error, can not find metabag information for object J\326\V0S101P3." A quick search of the forum finds only one hit, but didn't provide much in the way of a solution. It started to appear after I changed a lookup file set stage to...
by ShaneMuir
Thu Mar 20, 2008 12:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot stage - Parallel mode
Replies: 2
Views: 1797

In the example you have given, without hash partitioning would it be more difficult to remove duplicates? (without repartitioning further down the stream)
by ShaneMuir
Wed Mar 19, 2008 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split single record to multiple records
Replies: 13
Views: 3733

ray.wurlod wrote:There is an Ereplace() for parallel - it was published right here in DSXchange.
I thought it would be better to try and provide a solution using standard functionality first.