Problem
You have loaded a significant amount of data that is in mixed case. You want to query as if it were all lowercase (or all uppercase).
Solution
If you are using Oracle Database 10g or higher, you can use the ALTER SESSION statement enable case-insensitive searching with the >, <, and = comparison operators. To enable case-insensitive searching, alter the NLS_SORT and NLS_COMP parameters:
alter session set nls_sort=binary_ci;
alter session set nls_comp=linguistic;
|