Re: Create Read only user - Mailing list pgsql-admin

From Holger Jakobs
Subject Re: Create Read only user
Date
Msg-id 9e9f3cd6-bd51-29b3-887e-c3af2db91f54@jakobs.com
Whole thread Raw
In response to Re: Create Read only user  (Tim Cross <theophilusx@gmail.com>)
Responses Re: Create Read only user
Re: Create Read only user
List pgsql-admin
Yes, the PUBLIC schema is a remnant from times when no schemas were
used, but all table were created in the database itself. This was the
case in the early 7.x versions.

There are still some applications around which have no notion of a
schema. This is especially true for those which are expected work with a
bunch of very weak database servers, for instance with MySQL.
MySQL/MariaDB only have schemas and just a single database per server
instance. They call their schemas databases, though.

If you have an application which is made to run with PostgreSQL, the
configuration will allow to specify a schema to put the tables into.

Otherwise, you'll have to set up a search path including the schema you
want the database objects to end up in. You can configure the default
search path for the application user appropriately using ALTER ROLE.

Hardly any application forces the PUBLIC schema to be around. It's just
that the PUBLIC schema exists in the template1 database with full access
to PUBLIC and thus will exist in every database you create, unless you
remove it (or change the access rights) in the template1 database. And
the default search path includes PUBLIC.

Actually, this only exists to be compatible with *very* old applications.

Regards,

Holger

--

Holger Jakobs, Bergisch Gladbach, Tel. +49-178-9759012



Attachment

pgsql-admin by date:

Previous
From: Tim Cross
Date:
Subject: Re: Create Read only user
Next
From: Wells Oliver
Date:
Subject: Re: Create Read only user