NLS Settings DB level [message #427176] |
Wed, 21 October 2009 07:17 |
praveenc
Messages: 1 Registered: October 2009 Location: Bangalore
|
Junior Member |
|
|
Hi,
For making oracle to behave for case insensitive search
How to set NLS parameter in DB level rather session level ?
Thanks and regards
Praveen
|
|
|
|
Re: NLS Settings DB level [message #427190 is a reply to message #427185] |
Wed, 21 October 2009 08:39 |
ThomasG
Messages: 3212 Registered: April 2005 Location: Heilbronn, Germany
|
Senior Member |
|
|
Are you sure about that ?
You can't change the character set, but other NLS parameters can be set with alter system.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL>
SQL> ALTER system SET NLS_COMP=BINARY_CI scope=spfile;
System altered.
SQL>
SQL> alter system set NLS_SORT=BINARY_CI scope=spfile;
System altered.
SQL>
|
|
|
|
|
|