Re: Is it possible to findout actual owner of table?

From: John R Pierce <pierce(at)hogranch(dot)com>
To: dipti shah <shahdipti1980(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Is it possible to findout actual owner of table?
Date: 2010-03-09 06:49:58
Message-ID: 4B95EF96.4070007@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

dipti shah wrote:
> I don't want users to create/drop/alter anything directly. They have
> to use stored procedure for everything. The stored procedure creates
> logging tables and stores many other auditing information so it is
> madatory to prevent users from running any direct commands.
>

may be you should use middleware instead and not let your users connect
directly to SQL at all.

so, any DDL changes, you'd call the middleware server, it would
authenticate the user, decide whats allowed, maintain your audit trail,
logging, etc. ditto, any operations that require database queries, etc,
would all be done by this middleware.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Greg Smith 2010-03-09 07:15:32 Re: [NOVICE] How to read oracle table's data from postgre
Previous Message dipti shah 2010-03-09 06:29:36 Re: Is it possible to findout actual owner of table?