You can force all caps, as suggested by Snipe656. You can also use the regexp_instrcase-insensitive search function . For example, to search for a table EMPfor each row that ENAMEcontains the string 'in' in case-insensitive mode
SQL> ed
Wrote file afiedt.buf
1 select ename, empno
2 from emp
3* where regexp_instr( ename, 'in', 1, 1, 1, 'i' ) > 0
SQL> /
ENAME EMPNO
---------- ----------
MARTIN 7654
KING 7839
In your case, it will probably be something like
AND regexp_instr( a.request_id, '#form.searchbar#', 1, 1, 1, 'i' ) > 0
source
share