If you know the character you are looking for, you can paste it into
a script like the one below, to quickly fix specific tables and columns.

update table
set column_name= replace(column_name,'û',null)
where column_name like '%û%'
/

You can use ' ' in place of null if you really want a blank in there.
It may take a while to run on big tables.

Catherine A. LeBlanc, Database Analyst
Bates College

At 01:30 PM 3/20/01 -0800, you wrote:
>Can someone give me a guideline as to how I
>should draw a script to find special characters
>in the database and replace them with blanks.
>
>TIA
>
>Shakeel Qureshi
>[EMAIL PROTECTED]

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Catherine LeBlanc
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to