Re: Delete function

Поиск
Список
Период
Сортировка
От Gaetano Mendola
Тема Re: Delete function
Дата
Msg-id 012f01c1f5c8$bad48a00$d5a9fea9@GMENDOLA2
обсуждение исходный текст
Ответ на Delete function  ("Gaetano Mendola" <mendola@bigfoot.com>)
Ответы Re: Delete function
Список pgsql-admin
"Rajesh Kumar Mallah." <mallah@trade-india.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


В списке pgsql-admin по дате отправления:

Предыдущее
От: Jean-Paul ARGUDO
Дата:
Сообщение: Re: [DOCS] Migrating Oracle to PostgreSQL
Следующее
От: "Rajesh Kumar Mallah."
Дата:
Сообщение: Re: Delete function