If we try to find/search a text string from a DB stored PL/SQL program, we could find it using following query:
select * from dba_source where upper(text) like '%HELLO%';
So if we got 3 records as output of above query, how do we fetch entire 3 PL/SQL or SQL statements where search string 'HELLO' is found.