ORACLE 11g case insensitive by default

前端 未结 4 1095
情歌与酒
情歌与酒 2020-12-18 03:51

I found in this article, that since ORACLE 10g, there is a way to make a particular connection-session compare strings case-insensitive, without needing any crazy SQL functi

4条回答
  •  萌比男神i
    2020-12-18 04:20

    Sure you can!

    Get your friendly DBA to set these parameters:

    ALTER SYSTEM SET NLS_COMP=LINGUISTIC SCOPE=SPFILE; 
    
    ALTER SYSTEM SET NLS_SORT=BINARY_AI SCOPE=SPFILE; 
    

    This is taken from my short article on How to make Oracle Case Insensitive

提交回复
热议问题