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

Thread: INITCAP Vs NLS_INITCAP

  1. #1
    Join Date
    Aug 2001
    Posts
    9

    Exclamation

    Hi Friends,
    Can any body help me by clarifying the difference between
    the functions
    INITCAP and NLS_INITCAP

    Thanks in Adcance
    Rajesh

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    In some NLS language settings, the lowercase letters can have special uppercase mappings. Here is an example for German letter 'ß':

    SQL> SELECT INITCAP('ßabcd') "Initcap"
    2 FROM DUAL;

    Initc
    -----
    ßabcd

    SQL> SELECT NLS_INITCAP('ßabcd', 'NLS_SORT = XGerman') "NLS_inicap"
    2 FROM DUAL;

    NLS_in
    ------
    SSabcd
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

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