The default behaviour of LIKE and the other comparison operators, = etc is case-sensitive.
LIKE
=
Is it possible make them case-insensitive?
maybe you can try using
SELECT user_name FROM user_master WHERE upper(user_name) LIKE '%ME%'