This is a discussion on REVOKE DROP tables within the pgsql Admins forums, part of the PostgreSQL category; --> How can I REVOKE users right to DROP tables? Thanks FKleinpaul...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| "F. Kleinpaul" <fkleinpaul@gmail.com> writes: > How can I REVOKE users right to DROP tables? Only the owner can drop a table. Perhaps you are looking for ALTER TABLE ... OWNER ? regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| On Sat, Sep 02, 2006 at 08:33:52 -0300, "F. Kleinpaul" <fkleinpaul@gmail.com> wrote: > How can I REVOKE users right to DROP tables? The owner of a table can always drop it. So you would need to change the owner of the table using ALTER TABLE table_name OWNER TO new_owner. ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |