On Thu, Sep 26, 2013 at 9:04 AM, Rob Richardson <RDRichardson@xxxxxxxxxxx> wrote:
Select * from pg_proc where lower(prosrc) = '%<target_string>%'
A slight revision should work:
select distinct proname from pg_proc where prosrc ilike '%<target_string>%';
select distinct proname from pg_proc where prosrc ilike '%<target_string>%';