DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: special character

  1. #1
    Join Date
    Dec 2000
    Posts
    126

    special character

    Hi,

    Can any one explain why CHR(132) does NOT display in second string ?


    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Nov 1 16:54:19 2006

    Copyright (c) 1982, 2005, Oracle. All rights reserved.


    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.4.0 - Production

    4
    SQL> select chr(132) , 'Aas~!@'||chr(132)|| '#124234dadadasTd12234@#$' from dual
    2
    SQL> ;
    1* select chr(132) , 'Aas~!@'||chr(132)|| '#124234dadadasTd12234@#$' from dual
    SQL> /

    C 'AAS~!@'||CHR(132)||'#124234DA
    - ------------------------------
    ¿ Aas~!@#124234dadadasTd12234@#$

    SQL>

  2. #2
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    May be NLS character settings hide.

    See below:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options

    SQL> select chr(132) , 'Aas~!@'||chr(132)|| '#124234dadadasTd12234@#$' from dual ;

    C 'AAS~!@'||CHR(132)||'#124234DAD
    - -------------------------------
    ? Aas~!@?#124234dadadasTd12234@#$

    Tamil

  3. #3
    Join Date
    Dec 2000
    Posts
    126

    What about first column ?

    But chr(132) is displayed in first column as ¿


    SQL> ;
    1* select chr(132) , 'Aas~!@'||chr(132)|| '#124234dadadasTd12234@#$' from dual
    SQL> /

    C 'AAS~!@'||CHR(132)||'#124234DA
    - ------------------------------
    ¿ Aas~!@#124234dadadasTd12234@#$

  4. #4
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    cos your NLS settings ...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width