Search found 5 matches

by umapathi
Wed Apr 23, 2008 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to detect the presence of '^Z' character
Replies: 6
Views: 1830

it wl work....
Convert(Char(26),' ',In.ColumnName)
or
Convert(Char(26),Space(1),In.ColumnName)
by umapathi
Wed Apr 23, 2008 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to detect the presence of '^Z' character
Replies: 6
Views: 1830

This could help you...

Convert(Char(26),' ',In.ColumnName)
by umapathi
Fri Sep 15, 2006 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring Problem
Replies: 3
Views: 2229

Hi, first one working fine and im getting the desired output
link.columnname[1,Len(link.columnname)-13]
Thanks

but second solution in stage variable showing the error
that VARIABLE 'Oconv' not defined

could u explain what is ment by ' Go_' in the logic,what it actually do?
by umapathi
Fri Sep 15, 2006 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring Problem
Replies: 3
Views: 2229

Substring Problem

Hi DS Gurus, im getting the source data from the sybase as ODVAdsti_20060913.csv TRANSdsti_Trn_20060913.csv like that... now i want the output like ODVAdsti TRANSdsti_Trn i dont want _20060913.csv i have to implement the logic in Transformation i tried Field function n substring functions,but not su...