Re: Revoke on all database

From: Kretschmer Andreas <andreas_kretschmer(at)despammed(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Revoke on all database
Date: 2004-12-18 19:08:58
Message-ID: 20041218190858.GA9986@kaufbach.delug.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

am Sat, dem 18.12.2004, um 12:54:33 -0500 mailte Henry Molina folgendes:
> Hi all,
>
> Can I revoke "delete" on all database, something like this:

on all databases, or on all tables in one database?

>
> REVOKE DELETE ON DATABASE mydb FROM PUBLIC;

IMHO no, but you can walk through all database via 'psql -l' and then
walk through all tables in every database via 'echo "\d " | psql db'.
You get all tables in all databases and now you can do a 'revoke' on
this tables.

But i'm afraid, there is a better way to do this task...

Andreas
--
Diese Message wurde erstellt mit freundlicher Unterstützung eines freilau-
fenden Pinguins aus artgerechter Freilandhaltung. Er ist garantiert frei
von Micro$oft'schen Viren. (#97922 http://counter.li.org) GPG 7F4584DA
Was, Sie wissen nicht, wo Kaufbach ist? Hier: N 51.05082°, E 13.56889° ;-)

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Kretschmer Andreas 2004-12-19 10:38:40 Question about geometric function area()
Previous Message Henry Molina 2004-12-18 17:54:33 Revoke on all database