Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Characterset problem with Oracle
Joel Garry wrote:
> zunilp_at_gmail.com (Sunil) wrote in message > news:<8e0c3fab.0409092136.5d43fb6c_at_posting.google.com>...
> > Try it in sqlplus. Note the values: > > SQL> create table jjj (a varchar2(10)); > > Table created. > > SQL> insert into jjj values (''''); > > 1 row created. > > SQL> select * from jjj; > > A > ---------- > ' > > SQL>
I could be barking up the wrong tree, but the OP mentions Word documents. Word has that awful habit of auto-correcting things, and thus replacing "'" with "curly" apostrophes. I believe the curly version is an extended character, and you might well have trouble finding that represented in certain character sets.
MSWIN1252 or whatever the default on Windows platforms will support them, but I doubt WE8ISO will.
It could of course just be the proper 'escaping' of the character as you demonstrate.
Regards
HJR
Received on Fri Sep 10 2004 - 18:14:47 CDT
![]() |
![]() |