Hi,
I need to insert the registered trademark symbol into a field using SQL Plus. I have tried the following, but it doesn't work.
update table_name
set field_value = chr(169)
where table_key = 123;
I have tried several ascii codes for different special characters and the special characters don't get inserted. The NLS_CHARCTERSET value in the DB is UTF8. Any help would be greatly appreciated.
Thanks,
Rick Strom