Re: [SQL] cleaning up useless pl/pgsql functions

2003-06-30 Thread Rod Taylor
On Mon, 2003-06-30 at 21:13, Tomasz Myrta wrote: > Hi > Do you have any easy script to remove all pl/pgsql function? After a lot of > changes inside "create or replace function..." scripts I have a big mess. I > want to remove all user defined pl/pgsql functions and restore some of them > from m

Re: [SQL] cleaning up useless pl/pgsql functions

2003-06-30 Thread Mendola Gaetano
"Tomasz Myrta" <[EMAIL PROTECTED]> wrote: > Hi > Do you have any easy script to remove all pl/pgsql function? After a lot of > changes inside "create or replace function..." scripts I have a big mess. I > want to remove all user defined pl/pgsql functions and restore some of them > from my scripts

Re: [SQL] cleaning up useless pl/pgsql functions

2003-06-30 Thread Josh Berkus
Tomasz, > Hmm Answer to myself: > > DELETE from pg_proc where prolang =(select oid from pg_language where > lanname='plpgsq'); > > What do you think about it? You probably also want to put a "proowner = {your userid}" condition in there, just in case there are any builtins/contrib stuff that

Re: [SQL] cleaning up useless pl/pgsql functions

2003-06-30 Thread Tomasz Myrta
Dnia 2003-06-30 23:13, Użytkownik Tomasz Myrta napisał: Hi Do you have any easy script to remove all pl/pgsql function? After a lot of changes inside "create or replace function..." scripts I have a big mess. I want to remove all user defined pl/pgsql functions and restore some of them from my s

[SQL] cleaning up useless pl/pgsql functions

2003-06-30 Thread Tomasz Myrta
Hi Do you have any easy script to remove all pl/pgsql function? After a lot of changes inside "create or replace function..." scripts I have a big mess. I want to remove all user defined pl/pgsql functions and restore some of them from my scripts again. Regards, Tomasz Myrta ---