Re: How to FIX ODD CHARACTERS in a DB table??
Posted by: Holger L
Date: November 07, 2007 05:43PM

Not sure if I'm missing any special characters...

update <table_name>
set <field> = replace(<field>,'’','\'');
update <table_name>
set <field>= replace(<field>,'…','...');
update <table_name>
set <field>= replace(<field>,'–','-');
update <table_name>
set <field>= replace(<field>,'“','"');
update <table_name>
set <field>= replace(<field>,'”','"');
update <table_name>
set <field>= replace(<field>,'‘','\'');
update <table_name>
set <field>= replace(<field>,'•','-');
update <table_name>
set <field>= replace(<field>,'‡','c');

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to FIX ODD CHARACTERS in a DB table??
12181
November 07, 2007 05:43PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.