Re: [ADMIN] grant question

2009-02-28 Thread Tena Sakai
can I do? Hi, sure that does not work because the user gjoslyn from the group galloan is not allowed to use the schema gallo ... GRANT USAGE ON SCHEMA gallo to galloan; will help ... Cheers Andy > > Tena Sakai > tsa...@gallo.ucsf.edu > > > > -----Original Message

Re: [ADMIN] grant question

2009-02-28 Thread Andreas Wenk
elp ... Cheers Andy Tena Sakai tsa...@gallo.ucsf.edu -Original Message- From: Tena Sakai Sent: Sat 2/28/2009 3:04 PM To: Tena Sakai; Andreas Wenk Cc: pgsql-admin@postgresql.org Subject: RE: [ADMIN] grant question Hi, Maybe I found the underlying problem... too psql, I typed: canon=# \dn ga

Re: [ADMIN] grant question

2009-02-28 Thread Tena Sakai
chema | Name | Type | Access privileges +--+--+--- (0 rows) What can I do? Tena Sakai tsa...@gallo.ucsf.edu -Original Message- From: Tena Sakai Sent: Sat 2/28/2009 3:04 PM To: Tena Sakai; Andreas Wenk Cc: pgsql-admin@postgresql.org Subject: RE: [ADMIN] grant question Hi

Re: [ADMIN] grant question

2009-02-28 Thread Tena Sakai
resql.org Subject: Re: [ADMIN] grant question Hi Andy, Thank you for your walk through. Here's what I did, emulating your guidance and spirit: -- about to create a new role canon=# create role galloan; CREATE ROLE canon=# canon=# \dg galloan List of roles

Re: [ADMIN] grant question

2009-02-28 Thread Tena Sakai
Sent: Sat 2/28/2009 1:01 PM To: Tena Sakai Cc: pgsql-admin@postgresql.org Subject: Re: [ADMIN] grant question Tena Sakai schrieb: > Thank you, Scott, for your reply. > > > Two problems. 1: you don't grant select on schemas, you grant it on > > tables. 2: case folding

Re: [ADMIN] grant question

2009-02-28 Thread Andreas Wenk
du -Original Message- From: Scott Marlowe [mailto:scott.marl...@gmail.com] Sent: Sat 2/28/2009 12:04 PM To: Tena Sakai Cc: pgsql-admin@postgresql.org Subject: Re: [ADMIN] grant question On Sat, Feb 28, 2009 at 12:56 PM, Tena Sakai wrote: > Hi Everybody, > > I want to issue a com

Re: [ADMIN] grant question

2009-02-28 Thread Tena Sakai
: Tena Sakai Cc: pgsql-admin@postgresql.org Subject: Re: [ADMIN] grant question On Sat, Feb 28, 2009 at 12:56 PM, Tena Sakai wrote: > Hi Everybody, > > I want to issue a command: > >   grant select on schema_Z to user_a; > > so that the user_a can look at all tables in schema_Z.

Re: [ADMIN] grant question

2009-02-28 Thread Scott Marlowe
On Sat, Feb 28, 2009 at 12:56 PM, Tena Sakai wrote: > Hi Everybody, > > I want to issue a command: > >   grant select on schema_Z to user_a; > > so that the user_a can look at all tables in schema_Z. > Sadly, what I get is: >   ERROR:  relation "schema_Z" does not exist Two problems. 1: you don'

[ADMIN] grant question

2009-02-28 Thread Tena Sakai
Hi Everybody, I want to issue a command: grant select on schema_Z to user_a; so that the user_a can look at all tables in schema_Z. Sadly, what I get is: ERROR: relation "schema_Z" does not exist I tried: grant select on schema_Z.* to user_a; and response was: ERROR: syntax error a