Re: [ADMIN] Query

2008-06-27 Thread Jeff Frost
kartik wrote: Hello there, Can anyone tell me the differences between postgresql 8.1 and postgresql 8.3.3 Thanks Waiting for your reply Sure, just have a look here: http://www.postgresql.org/docs/8.3/static/release-8-3.html -- Jeff Frost, Owner <[EMAIL PROTECTED]> Frost Consult

Re: [ADMIN] Query

2008-06-27 Thread Travis Smith
These docs are pretty good... .. release notes.. http://www.postgresql.org/docs/8.3/static/release.html From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of kartik Sent: Friday, June 27, 2008 12:33 AM To: pgsql-admin@postgresql.org Subject: [ADMIN] Query

Re: [ADMIN] Extended security/restriction to any role with login access

2008-06-27 Thread Domingo Alvarez Duarte
My users will not need to use pgadmin3, the whole problem is any user with login access to a postgresql server can use pgadmin3 to connect and see all databases/roles/functions/table-definitions/schemas. This is not a problem with pgadmin3 but with postgresql server. Look at it in a general way so

[ADMIN] Query

2008-06-27 Thread kartik
Hello there, Can anyone tell me the differences between postgresql 8.1 and postgresql 8.3.3 Thanks Waiting for your reply

Re: [ADMIN] Extended security/restriction to any role with login access

2008-06-27 Thread Domingo Alvarez Duarte
I did the following: -Connect as superuser postgres with pgadmin and create a user -> noaccess CREATE ROLE noaccess LOGIN NOSUPERUSER NOINHERIT NOCREATEDB NOCREATEROLE; -Disconnect from the server -Connect to the server with user 'noaccess' through pgadmin3, and I can see all databases/functions

Re: [ADMIN] Extended security/restriction to any role with login access

2008-06-27 Thread Lennin Caro
in pgadmin3: Menu -> Display check the option "System Object" this show you the catalogs of postgresql "pg_" change the grants to users  here --- On Fri, 6/27/08, Domingo Alvarez Duarte <[EMAIL PROTECTED]> wrote: From: Domingo Alvarez Duarte <[EMAIL PROTECTED]> Subject: Re: [ADMIN] Exte

Re: [ADMIN] Extended security/restriction to any role with login access

2008-06-27 Thread Lennin Caro
Ok... the catalog of tables, function and roles are public. Pgadmin use the catalog to create the tree of databases, function and roles. The user can see this but cant change this. In oracle the catalog of user, tables, function are public --- On Fri, 6/27/08, Domingo Alvarez Duarte <[EMAIL PR

Re: [ADMIN] Extended security/restriction to any role with login access

2008-06-27 Thread Lennin Caro
ok, let try this . open the pg_hba.conf and check the line host    all all 127.0..0.1/32  trust and change to host    all all 127.0..0.1/32  password --- On Thu, 6/26/08, Domingo Alvarez Duarte <[EMAIL PROTECTED]> wrote: From: Domingo Alv