This is not working.
select * from INFORMATION_SCHEMA.ROUTINES
where routine_type in( 'PROCEDURE' ,'FUNCTION')
and (routine_name not like '%A_%'
or routine_name not like '%B_%')
This is giving me resultset with all proc and functions starting with A_ , B_ along with others.
I just want others to show in the output.