Click here to Skip to main content
15,912,069 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is Oracle Data Casesensitive?
if yes..
then how i can remove this data case sensitivity..??
Posted

Please refer similar discussion on following link, you will sure get some needful from it..
Case insensitive database[^]

Also have look on this article:
Making Oracle Case insensitive[^]
 
Share this answer
 
v2
Comments
ssd_coolguy 14-May-12 6:19am    
hey prasad, thanks i got clue from your post.. :)
plz see my solution..
Prasad_Kulkarni 14-May-12 7:45am    
Glad it helps!
if its really helpful then formally 'Accept Solution'.
set oracle parameter as

NLS_COMP=LINGUISTIC and
NLS_SORT=BINARY_CI

for data incasesensitive.

for session only..run below query

ALTER SESSION SET NLS_COMP=LINGUISTIC;
ALTER SESSION SET NLS_SORT=BINARY_CI;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900