Search found 86 matches

by madhukar
Wed Feb 14, 2007 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2812

Thanks for all the answers

But i have to do it in datatsage and
input rows are of varying length i.e all rows will have even number of columns but number of columns is not same in each row and it is a comma delimited file
by madhukar
Tue Feb 13, 2007 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2812

replace comma with next line character at even position

Hi All,

i need to replace every even position comma (2, 4, 6...n) in the input row into a next line character.

Thanks in advance
by madhukar
Mon Oct 09, 2006 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with merge Stage
Replies: 2
Views: 1315

Re: Problem with merge Stage

Field names should be unique to get all columns from Master and Update Link. If there are too many similar column names then the warning mentioned by you occurs for every row processed and job gets aborted when warning limit exceeds. One way is to switch off RCP in all output page of input to merge ...
by madhukar
Sun Oct 08, 2006 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column is taking more than defined length in dataset
Replies: 6
Views: 1612

Space at starting of a decimal specifies the "sign position" which is a default property. Space indicates a positive value.
To avoid the space you have to set the field width property.
by madhukar
Thu Aug 10, 2006 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VarChar to Date Problem
Replies: 5
Views: 1857

[quote] [code]StringToDate(InputLink.ColumnName,"%yyyy-%mm-%dd") [/code] and you have set the Datatype in the output of the Transformer as Date for this Column? Since you say that most of the rows are nulls, are you handling nulls?[/quote] i thk it should be StringToDate(InputLink.ColumnNa...
by madhukar
Thu Aug 10, 2006 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to transfer nulls as nulls?
Replies: 21
Views: 8918

ray,

I regret the inconvenience caused.

correction:

please read "u r" as you are and "ur" your
by madhukar
Wed Aug 09, 2006 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the last 10runs time of a job
Replies: 5
Views: 2592

Re: How to find the last 10runs time of a job

u can define a temp table and load statistics of each run into the table.
Query "temp" table for hw many runs u want....
by madhukar
Wed Aug 09, 2006 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to transfer nulls as nulls?
Replies: 21
Views: 8918

Re: how to transfer nulls as nulls?

Check the nullable property in input & output of transformer. if u r not doing any explicit tranformation of converting varachar to number(7,4) in transformer then, it does implicit conversion. if ur varchar column does not have proper number, it will put zero as default. try an explicit convers...
by madhukar
Tue Aug 08, 2006 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get performance while using UserdefinedUpdate stmt
Replies: 5
Views: 1719

Re: How to get performance while using UserdefinedUpdate stm

Since it taking more time, you can try the follwoing option.

do the upsert process in datastage and do all records insert into the table.
by madhukar
Tue Aug 08, 2006 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Neeed help in converting Packed decimals
Replies: 7
Views: 1232

If you dont have cobol layouts, then how you are reading the source files.
by madhukar
Wed Aug 02, 2006 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Constrain is not working in Transformer
Replies: 6
Views: 2075

Re: Constrain is not working in Transformer

Is your invisible characters seems to be link "squares"? if yes then ur pad character defined is null character. change into space and try trim function.