Re: Search in code

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Vitaly Belman <vitalyb(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Search in code
Date: 2004-07-24 14:34:52
Message-ID: 4162.1090679692@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Vitaly Belman <vitalyb(at)gmail(dot)com> writes:
> In Oracle I was used to be able to search directly in code from SQL
> Navigator (I'm not sure if it is a feature of the database or the
> tool). It means that I could search if a certain string appears in one
> of the functions (across different schemas/packages).

You mean something like

select proname, prosrc from pg_proc where prosrc ~ 'word';

? A little less polished than Oracle's tool, no doubt ...

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Peter Eisentraut 2004-07-25 23:07:55 Re: Sql injection attacks
Previous Message Vitaly Belman 2004-07-24 14:00:03 Search in code