Re: How do I find a trigger function that is raising notices?

From: bricklen <bricklen(at)gmail(dot)com>
To: Rob Richardson <RDRichardson(at)rad-con(dot)com>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: How do I find a trigger function that is raising notices?
Date: 2013-09-26 16:05:00
Message-ID: CAGrpgQ863J5H7rJRRSFQ8MRaQ6gb8iFAh0rjZUjdvGW2t0rcJg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Sep 26, 2013 at 9:04 AM, Rob Richardson <RDRichardson(at)rad-con(dot)com>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>%';

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Craig Boyd 2013-09-26 16:14:47 Blowfish Encrypted String
Previous Message Rob Richardson 2013-09-26 16:04:53 How do I find a trigger function that is raising notices?