The default behaviour of LIKE and the other comparison operators, = etc is case-sensitive.
LIKE
=
Is it possible make them case-insensitive?
select user_name from my_table where nlssort(user_name, 'NLS_SORT = Latin_CI') = nlssort('%AbC%', 'NLS_SORT = Latin_CI')