Search found 3 matches

by sanpete
Wed May 30, 2007 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Eliminate Double Quotes from the Source file
Replies: 12
Views: 4517

Hi All

I agree that the point you have mentioned about solving it with efficiency rather just solve it. I have used CONVERT() Function and it works.

Thanks Again,

Pete
by sanpete
Tue May 29, 2007 4:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Eliminate Double Quotes from the Source file
Replies: 12
Views: 4517

Using Field String Function

Hi All, Thanks for all your valuable information. I have used Field String function to eliminate Double Quotes from the Name Field, ie. If the name comes in as John 'Doe' the Result should be John Doe Solution is : Field(String,'"',1):" ":Field(String,'"',2) It Works :D Thanks
by sanpete
Mon May 28, 2007 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Eliminate Double Quotes from the Source file
Replies: 12
Views: 4517

To Eliminate Double Quotes from the Source file

I have a source file with a columns namely, Id and Name. The name comes with First name and Last name with quotes. I would like to Trim the string by eliminating the double quotes. Input ID Name 101 John "Mathews" 102 Leander "Pius" Required Output ID Name 101 John Mathews 102 Le...