Search found 10 matches

by sajal.jain
Mon Dec 30, 2013 12:00 am
Forum: General
Topic: error adding to schedule when use daily option
Replies: 7
Views: 3977

Some how I get this error only when schedule the job for current day and not if I use any future date. Is it still not a bug then?
by sajal.jain
Fri May 18, 2012 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip zeros
Replies: 13
Views: 7181

maybe worth trying with

If IsNull(string) Then SetNull() Else StringToDecimal(trimLeadingTrailing(string))


sometimes it attaches a extra space at the start
by sajal.jain
Fri May 18, 2012 1:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip zeros
Replies: 13
Views: 7181

maybe worth trying with

If IsNull(string) Then SetNull() Else StringToDecimal(trimLeadingTrailing(string))


sometimes it attaches a extra space at the start[/b]
by sajal.jain
Wed May 16, 2012 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype problem
Replies: 9
Views: 3632

maybe 'yyyy-mm-dd' is not your default DataStage date format? Try with 'dd-mmm-yyyy'
by sajal.jain
Mon Jan 31, 2011 12:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings in the lookup stage
Replies: 6
Views: 5763

By default the lookup gets the results from the first match found and for subsequent ones gives the warning.

Go to constraint tab on lookup stage and then select the reference link from 'Multiple rows returned from link' drop box - this way it will get the results with all matches with no warnings.
by sajal.jain
Thu Jan 06, 2011 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MULTIPLE ROWS TO SINGLE ROW
Replies: 5
Views: 2895

Re: MULTIPLE ROWS TO SINGLE ROW

How do you arrive at 'T' in output & and what is criteria to merge... Are sets of 2 rows to be merged into one ?
by sajal.jain
Mon Aug 30, 2010 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple row generation for a single row source
Replies: 6
Views: 3203

use join

or

in the look up stage --> goto constraints and select the link name in "Multiple rows return from link" drop box.
by sajal.jain
Thu Mar 25, 2010 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Zeros with Decimal dataType
Replies: 10
Views: 5854

Trim(Col1,"0","L") will give 20.00 for 00000000020.00, but for 0000000000.15 it will give .15. i hope that is not required if the target field is of currency format... plz correct me if i am wrong. try with : (if col1 <1 then '0' else ''):Trim(DecimaltoString(col1),"0",...
by sajal.jain
Thu Mar 25, 2010 6:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Zeros with Decimal dataType
Replies: 10
Views: 5854

Trim(Col1,"0","L") will give 20.00 for 00000000020.00, but for 0000000000.15 it will give .15. i hope that is not required if the target field is of currency format...

plz correct me if i am wrong.

Thanks - Sajal
by sajal.jain
Thu Mar 25, 2010 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Zeros with Decimal dataType
Replies: 10
Views: 5854

Trim(Col1,"0","L") will give 20.00 for 00000000020.00, but for 0000000000.15 it will give .15. i hope that is not required if the target field is of currency format...

plz correct me if i am wrong.

Thanks - Sajal