Re: »Ø¸´£º [GENERAL] How to make the user-defined function or type beingaccessed in the global database server?

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: »Ø¸´£º [GENERAL] How to make the user-defined function or type beingaccessed in the global database server?
Дата
Msg-id 4D622587.9080406@postnewspapers.com.au
обсуждение исходный текст
Ответ на 回复: [GENERAL] How to make the user-defined function or type beingaccessed in the global database server?  ("页公倒龙" <77287991@qq.com>)
Список pgsql-general
On 20/02/2011 2:13 PM, 页公倒龙 wrote:
> Thanks for your replying. But actually there are some difference
> database now, and I really want to define the user-defined function or
> type one time so that they can be accessed as system-defined function or
> type, how can I do?

It sounds like you want something like Oracle's packages. If so, you're
out of luck: postgresql doesn't support anything like that at this point.

Bundle the functions, type definitions, etc up in a .sql file and run
that on each database. It's cleanest if you do this by creating a new
schema called, say, 'shared', then SET search_path=shared before
creating the functions and types. That way they all go in one place
that's separated from the per-database content. To access them, SET
search_path=shared,public . You can "ALTER USER SET
search_path=shared,public" or "ALTER DATABASE SET
search_path=shared,public" to make it default.

See the manual for more information about schema, and the commands/options:

   SET
   search_path
   CREATE SCHEMA
   CREATE FUNCTION

--
Craig Ringer

Tech-related writing at http://soapyfrogs.blogspot.com/

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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: Worst case scenario of a compromised non super-user PostgreSQL user account
Следующее
От: John R Pierce
Дата:
Сообщение: Re: »Ø¸´£º [GENERAL] How to make the user-defined function or type beingaccessed in the global database server?