Re: [GENERAL] Privileges question

2005-02-14 Thread Gregory S. Williamson
:59 AM To: pgsql-general@postgresql.org Cc: Subject:[GENERAL] Privileges question -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, ~ I created a schema, database, tables, users and a user group. create user sma_user password 'x'; create group sma_user_group; al

Re: [GENERAL] Privileges question

2005-02-14 Thread Michael Fuhr
On Mon, Feb 14, 2005 at 11:59:33AM -0700, James Moe wrote: > > When logged in as sma_user, it is denied access to the schema: > ERROR: permission denied for schema sma_apps See "Schemas and Privileges" in the documentation, as well as the documentation for GRANT: http://www.postgresql.org/docs/8

[GENERAL] Privileges question

2005-02-14 Thread James Moe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, ~ I created a schema, database, tables, users and a user group. create user sma_user password 'x'; create group sma_user_group; alter group sma_user_group add user sma_user; create table sma_apps.ordr_dat ( ... ); grant select,delete,insert