Where can I query the current case-sensitivity setting of an oracle database?
I've tried looking in v$database, nls_database_parameters, and looking through the system packages, but none of them seem to provide the information I need...
|
|
Where can I query the current case-sensitivity setting of an oracle database? I've tried looking in
|
||
|
|
|
|
In
From documentation:
|
|||
|
|
|
In addition to the answers already given be aware that case sensitivity changes in 11g - e.g. see the 11g documentation re passwords. |
||
|
|
|
|
For Oracle 10gR2 (and later), the parameters are NLS_COMP and NLS_SORT.
(These parameters are set at the session level. The settings for a session are inherited from the database setting, unless overridden by setting an OS environment variable, or an ALTER SESSION statement.) If you want "case-insensitive" sorting and string matching, you can try these settings:
Those aren't the only settings for the parameters, of course. Oracle 10gR2 documentation: |
|||
|
|