Re: Multiple Schema in One DB

From: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
To: itishree sukla <itishree(dot)sukla(at)gmail(dot)com>
Cc: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Multiple Schema in One DB
Date: 2014-02-27 06:32:36
Message-ID: CAOR=d=3h=RA8mdRy9QxFyy0uVCr9qG62OESc9kTPza+vuJ2ecA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Feb 26, 2014 at 11:24 PM, itishree sukla
<itishree(dot)sukla(at)gmail(dot)com> wrote:
> Hi all,
>
> I am in a requirement to have multiple schema in one Database.
>
> Schema structure will be same with respect to DB all db objetcs like tables,
> procedure.
>
> However each schema will be accessed by one one application.
>
> Problem is as all DB objects are same, when application is calling to a
> schema we have set search_path='schema name' in our procedure level. Now we
> want to get rid of that.
>
> I know we have do it based on ROLE Level, question is having more than one
> user defined schema is it achievable, i have done a small exercise, seems to
> be it is taking the first schema defined in the set search_path.
>
> As i am in urgent need of it, please help me.

You can alter user to each one have their own search path.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message James Harper 2014-02-27 10:47:44 documentation bug
Previous Message itishree sukla 2014-02-27 06:24:39 Multiple Schema in One DB