Server character set

Ask a Question related to Oracle Server, Design and Development.

  1. #1

    Default Re: Server character set

    Hi!

    I'd rather use:

    select value from nls_database_parameters where parameter =
    'NLS_CHARACTERSET';

    Tanel.

    "Abhijith" <abhijith@nomail.com> wrote in message
    news:3EF6E95D.2060009@nomail.com...
    > try
    > SELECT nls_charset_name(nls_charset_id('CHAR_CS')) FROM dual
    >
    > Abhijith.
    >
    > Holger Heidenbluth wrote:
    > > Hi all,
    > >
    > > can anybody tell me how I can retrieve the character set
    > > name that once has been used to create the database?
    > >
    > > Thanks
    > > Holger
    > >
    > >
    >

    Tanel Poder Guest

  2. Similar Questions and Discussions

    1. Extract Character By Character in PDF
      Hi I have requirement to read the content of the PDF file. I achieved it using Adobe SDK and VB.NET. I used the GetJsObject, getPageNthWord and...
    2. Character Encoding
      When attempting to retrieve a Greek RSS feed via mx:HTTPService the characters return in an unreadable state. The following code easily replicates...
    3. InDesign ME Character Problem! Character-Change by Printing or saving *.PS!
      Hi everybody! I have some problems with ME Version. When i want to print a page with FARSI-Text in it, he changes one character! on screen he...
    4. Removing a character
      Probably very easy, but I'm stumped!! I have this: on keyDown me legalCharacters = "abcdefghijklmnopqrstuvwxyz" if legalCharacters contains...
    5. Find Character set rdbms server
      Hi, Someone could tel me how can i do to find what is the character set of my database? Thank's
  3. #2

    Default Re: Server character set

    Or even simpler: select * from database_properties;

    ;-*


    "Tanel Poder" <tanel@@peldik.com> wrote in message
    news:3ef78e6f_1@news.estpak.ee...
    > Hi!
    >
    > I'd rather use:
    >
    > select value from nls_database_parameters where parameter =
    > 'NLS_CHARACTERSET';
    >
    > Tanel.
    >
    > "Abhijith" <abhijith@nomail.com> wrote in message
    > news:3EF6E95D.2060009@nomail.com...
    > > try
    > > SELECT nls_charset_name(nls_charset_id('CHAR_CS')) FROM dual
    > >
    > > Abhijith.
    > >
    > > Holger Heidenbluth wrote:
    > > > Hi all,
    > > >
    > > > can anybody tell me how I can retrieve the character set
    > > > name that once has been used to create the database?
    > > >
    > > > Thanks
    > > > Holger
    > > >
    > > >
    > >
    >
    >

    Arcangelo Guest

  4. #3

    Default Re: Server character set

    Incidentally:

    SQL> select * from database_properties;

    PROPERTY_NAME
    ------------------------------
    PROPERTY_VALUE
    ----------------------------------------------------------------------------
    ----
    DESCRIPTION
    ----------------------------------------------------------------------------
    ----
    DICT.BASE
    2
    dictionary base tables version #

    DEFAULT_TEMP_TABLESPACE
    TEMP
    Name of default temporary tablespace

    DBTIMEZONE
    -07:00
    DB time zone

    NLS_LANGUAGE
    AMERICAN
    Language

    NLS_TERRITORY
    AMERICA
    Territory

    NLS_CURRENCY
    $
    Local currency

    NLS_ISO_CURRENCY
    AMERICA
    ISO currency

    NLS_NUMERIC_CHARACTERS
    ..,
    Numeric characters

    NLS_CHARACTERSET
    AL32UTF8
    Character set

    NLS_CALENDAR
    GREGORIAN
    Calendar system

    NLS_DATE_FORMAT
    DD-MON-RR
    Date format

    NLS_DATE_LANGUAGE
    AMERICAN
    Date language

    NLS_SORT
    BINARY
    Linguistic definition

    NLS_TIME_FORMAT
    HH.MI.SSXFF AM
    Time format

    NLS_TIMESTAMP_FORMAT
    DD-MON-RR HH.MI.SSXFF AM
    Time stamp format

    NLS_TIME_TZ_FORMAT
    HH.MI.SSXFF AM TZR
    Time with timezone format

    NLS_TIMESTAMP_TZ_FORMAT
    DD-MON-RR HH.MI.SSXFF AM TZR
    Timestamp with timezone format

    NLS_DUAL_CURRENCY
    $
    Dual currency symbol

    NLS_COMP
    BINARY
    NLS comparison

    NLS_LENGTH_SEMANTICS
    BYTE
    NLS length semantics

    NLS_NCHAR_CONV_EXCP
    FALSE
    NLS conversion exception

    NLS_NCHAR_CHARACTERSET
    AL16UTF16
    NCHAR Character set

    NLS_RDBMS_VERSION
    9.2.0.1.0
    RDBMS version for NLS parameters

    GLOBAL_DB_NAME
    GEN92.PICTON.COM
    Global database name

    EXPORT_VIEWS_VERSION
    8
    Export views revision #


    25 rows selected.

    Just so you know...

    ;-)


    "Arcangelo" <arcangelo-c@yahoo.com> wrote in message
    news:3ef9858f$0$5434$afc38c87@news.optusnet.com.au ...
    > That would be because it is a new view in 9i.
    >
    > You didn't specify your version.
    >
    > So I had to guess.
    >
    > ;-)
    >
    >
    > "Avi Abrami" <aabrami@intersystemsww.com> wrote in message
    > news:3EF91892.5010201@intersystemsww.com...
    > > Arcangelo wrote:
    > > > Or even simpler: select * from database_properties;
    > >
    > > Arcangelo,
    > > It doesn't work for me :-(
    > >
    > > SQL*Plus: Release 8.1.7.0.0 - Production on Wed Jun 25 06:30:21 2003
    > >
    > > (c) Copyright 2000 Oracle Corporation. All rights reserved.
    > >
    > >
    > > Connected to:
    > > Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    > > JServer Release 8.1.7.4.0 - Production
    > >
    > > SQL> select * from database_properties;
    > > select * from database_properties
    > > *
    > > ERROR at line 1:
    > > ORA-00942: table or view does not exist
    > >
    >
    >

    Arcangelo Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139