Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Removing Apostraphes From Uploaded Attachment Files

Re: Removing Apostraphes From Uploaded Attachment Files

From: Isa <isapmon_at_terra.es>
Date: 30 Aug 2005 04:46:54 -0700
Message-ID: <1125402414.451676.9590@g47g2000cwa.googlegroups.com>


Hi:
you can remove in pl/sql the apostrope witn "replace instruction":

declare
  file_name varchar2(100):= "name of the uploaded file" begin
  file_name := replace(file_name , chr(39)); -- 39 is the ascii code of ( ' )
end;
/

I hope it's usefull to you.
Regards,
Isa Received on Tue Aug 30 2005 - 06:46:54 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US