请教有高手没有,看看怎么保存 ORCLE 10!下无法保存啊。
让我痛惜的ORACLE

解决方案 »

  1.   

    create table tb(col nvarchar2(10))insert into tb values('猇亭区')commit;select * from tb查询没问题.
    但是拷贝出来有问题.确实奇怪.
    /*COL                 
    --------------------
    ªVͤÇø              1 row selected.
    */
      

  2.   

    create table tb(col nvarchar2(10))insert into tb values(N'猇亭区')commit;select * from tb查询没问题,能显示:
    /*
    猇亭区
    */
    但是在toad里面用f5运行,出来的文本就不行了.
      

  3.   

    我copy出来也是ok的 啊
    Connected to Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 
    Connected as hn2010
     
    SQL> select * from tb
      2  /
     
    COL
    --------------------
    猇亭区
     
    SQL> 
      

  4.   

    SQL> select a.name from r_cp a where a.cp_no = 12121000180819;
     
    NAME
    --------------------------------------------------------------------------------
    天宫院大队(猇亭区)
     
    SQL> 
    这是库里的数据 我把它查到页面显示都是ok的哦
      

  5.   

    SIMPLIFIED CHINESE_CHINA.ZHS16GBK 我们的字符集设置时这样的
      

  6.   

    scott@ORCL> select '猇' from dual
      2  /'
    --
    猇scott@ORCL> create table ttttt(name varchar2(10))
      2  /表已创建。scott@ORCL> insert into ttttt select '猇' from dual
      2  /已创建 1 行。scott@ORCL> commit
      2  /提交完成。scott@ORCL> select * from ttttt
      2  /NAME
    ----------

    --你把这个字再英文环境复制过来在插入试试 全英文模式
    --我的没问题
      

  7.   

    --我的也可以啊
    SQL> select '猇' from dual;'
    --

    --用ascii码也能找到
    SQL> select chr(43606) from dual;CH
    --