Using of Trim function in parallel jobs

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
karthegx
Participant
Posts: 27
Joined: Wed Sep 06, 2006 1:48 am

Using of Trim function in parallel jobs

Post by karthegx »

Hi,

I have Problem regarding the usage of Trim function. I am getting input data of a particular column as RA|D|IU|S . I used Trim function in server job as Trim(columnname,"|","A") its working and result was RADIUS.To get output like this what function i want to use in parallel.

Thanks in Advance
kartheek
DSguru2B
Charter Member
Charter Member
Posts: 6854
Joined: Wed Feb 09, 2005 3:44 pm
Location: Houston, TX

Post by DSguru2B »

Use Convert()

Code: Select all

Convert("|","", columnname)
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Post Reply