Re: How to correct schema-names within function when the schema gets renamed?

Поиск
Список
Период
Сортировка
От damien clochard
Тема Re: How to correct schema-names within function when the schema gets renamed?
Дата
Msg-id 4E5B9645.2050805@dalibo.info
обсуждение исходный текст
Ответ на How to correct schema-names within function when the schema gets renamed?  (Andreas <maps.on@gmx.net>)
Список pgsql-novice
Le 29/08/2011 13:44, Andreas a écrit :
> Hi,
> how can I correct schema-names within function when the schema gets
> renamed?
> PG corrects automagicaly every view and foreign key.
>
> Though I found that it doesn't update the schema-name in sql-functions.
> Say there where a table "bar" in the schema "foo"
> and there is a function f(int) that results to "select * from foo.bar
> where id = $1".
>
> Then I rename "foo" to "sansi" and all seems nice till I call f().
> Now I get an error that schema "foo" can't be found.
>
> How could I find all functions that use the now uncorrect schema-name?
>

Not sure, but the query below might help :

SELECT proname,prosrc
FROM pg_proc
WHERE prosrc LIKE '%foo.%';



--
damien clochard
dalibo.com | dalibo.org

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

Предыдущее
От: pasman pasmański
Дата:
Сообщение: Re: nice updates
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: How to correct schema-names within function when the schema gets renamed?