| From: | Erik Wienhold <ewie(at)ewie(dot)name> |
|---|---|
| To: | M Sarwar <sarwarmd02(at)outlook(dot)com>, "pgsql-admin(at)lists(dot)postgresql(dot)org" <pgsql-admin(at)lists(dot)postgresql(dot)org> |
| Subject: | Re: Unable to drop the user |
| Date: | 2023-09-17 16:21:07 |
| Message-ID: | 438062627.116020.1694967667916@office.mailbox.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
On 17/09/2023 17:26 CEST M Sarwar <sarwarmd02(at)outlook(dot)com> wrote:
> I am trying to drop a user.
>
> drop USER Dev_BaoP ;
>
> I am getting the below error message.
>
> ERROR: role "dev_baop" cannot be dropped because some objects depend on it
> DETAIL: privileges for schema public
> privileges for schema Bronx
You need to revoke those privileges before dropping the role [1]. Use psql
command \dn+ to show them. Or just use the combo of REASSIGN OWNED BY and
DROP OWNED BY.
See also this recent thread [2].
[1] https://www.postgresql.org/docs/current/role-removal.html
[2] https://www.postgresql.org/message-id/CAGbX52H6XVMzZ96TcyArjOPw2KCUpQ6EC1Ch%3DyPAyUxsL1Qreg%40mail.gmail.com
--
Erik
| From | Date | Subject | |
|---|---|---|---|
| Next Message | M Sarwar | 2023-09-17 18:11:50 | Re: Unable to drop the user |
| Previous Message | M Sarwar | 2023-09-17 15:26:14 | Unable to drop the user |