Re: Creating Functions in Separate Schema

Поиск
Список
Период
Сортировка
От Tino Wildenhain
Тема Re: Creating Functions in Separate Schema
Дата
Msg-id 1093585028.1520.110.camel@Andrea.peacock.de
обсуждение исходный текст
Ответ на Creating Functions in Separate Schema  ("Mark Dexter" <MDEXTER@dexterchaney.com>)
Список pgsql-general
Hi Mark,

Am Do, den 26.08.2004 schrieb Mark Dexter um 23:42:
> Our application currently runs in Microsoft SQL Server and we are
> porting it over to Postgres.  When we write enbedded SQL queries for
> SQL Server, we need to reference user-defined functions with the
> prefix "dbo." (e.g., "dbo.Function_Name()").  In experimenting with
> Postgres, it appears that we can create a schema called "dbo" and then
> reference functions with the same syntax (e.g.,
> "dbo.Function_Name()").
>
> We're trying to understand whether there will be any disadvantages to
> doing this.  Are there any possible issues or problems with this
> approach?  Any help will be greatly appreciated.  Thanks.
>
This is generally not a problem. The search order
depends on the current user, so if there is a schema
with same name as the current user, its the first to search
in (and the one to put new objects in) but if you
always specify the schema name with your objects you
should not expect any problems and can use as many
schemas you want.

Regards
Tino Wildenhain


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: owner orphaned databases
Следующее
От: Greg Stark
Дата:
Сообщение: Re: performance of IN (subquery)