Re: Delete function

From: "Rajesh Kumar Mallah(dot)" <mallah(at)trade-india(dot)com>
To: "Gaetano Mendola" <mendola(at)bigfoot(dot)com>, <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Delete function
Date: 2002-05-07 13:16:00
Message-ID: 200205071846.00311.mallah@trade-india.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Thanks Mendola ,
that was a nice idea for functions....
regds
mallah.

On Tuesday 07 May 2002 06:41 pm, Gaetano Mendola wrote:
> "Rajesh Kumar Mallah." <mallah(at)trade-india(dot)com> wrote:
> > eg
> > regression=> \o command.sql
> > regression=> select 'DROP function ' || proname from pg_proc WHERE
>
> proname
>
> > ~ '^sp_';
> >
> > then psql -f command.sql
>
> This work fine with the views, unfortunately when you drop a function you
> should specify the argument type, so I did in this way (I think is the
> clean way):
>
> $ psql -t -c "SELECT 'DROP function ' || proname || ' ('||
> oidvectortypes(proargtypes) || ');' from pg_proc WHERE proname ~ '^sp_'" >
> todelete.sql
> $ psql -f todelete.sql
>
>
> Ciao
> Gaetano

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2002-05-07 13:38:17 Re: Dying PostgreSQL backend
Previous Message Gaetano Mendola 2002-05-07 13:11:41 Re: Delete function