Re: drop role fails

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Marc Fromm <Marc(dot)Fromm(at)wwu(dot)edu>
Cc: "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: drop role fails
Date: 2008-10-29 15:51:44
Message-ID: 20081029155144.GB4331@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Marc Fromm wrote:
> I need to drop a role/user but receive the message:
> ERROR: role "ken" cannot be dropped because some objects depend on it
> DETAIL: 1 objects in database css
> 1 objects in database manuals
> 1 objects in database cswe2
>
> I checked the databases listed and the user/role ken is not associated with any items in the database, owner is always listed as postgres.

Probably it has been granted permissions. Try DROP OWNED BY (which
should revoke the permissions), maybe preceded by REASSIGN OWNED BY just
to ensure you don't drop objects you wanted to keep ...

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Peter Koczan 2008-10-29 17:07:03 SSL and md5 password?
Previous Message Marc Fromm 2008-10-29 15:40:21 drop role fails