From: | Andreas Kretschmer <andreas(at)a-kretschmer(dot)de> |
---|---|
To: | Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com> |
Cc: | "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Bug, Feature, or what else? |
Date: | 2013-02-08 15:57:12 |
Message-ID: | 193127308.25154.1360339032141.JavaMail.open-xchange@ox.ims-firmen.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com> hat am 8. Februar 2013 um 16:48
geschrieben:
> On 02/08/2013 07:45 AM, Andreas Kretschmer wrote:
> >
> >>
> >> If I am following the Notes section correctly in:
> >>
> >> http://www.postgresql.org/docs/9.1/interactive/sql-revoke.html
> >>
> >> "If a superuser chooses to issue a GRANT or REVOKE command, the command
> >> is performed as though it were issued by the owner of the affected
> >> object. Since all privileges ultimately come from the object owner
> >> (possibly indirectly via chains of grant options), it is possible for a
> >> superuser to revoke all privileges, but this might require use of
> >> CASCADE as stated above."
> >>
> >>
> >> Try:
> >>
> >> revoke all on schema public from ak02 cascade;
> >
> > Yeah, i read that before, but doesn't help:
> >
> >
> >
> > db115150=# revoke all on schema public from ak02 cascade;
> > REVOKE
> > db115150=# drop user ak02;
> > FEHLER: kann Rolle »ak02« nicht löschen, weil andere Objekte davon abhängen
> > DETAIL: Privilegien für Schema public
> >
> >
> > Strange, isn't it?
>
> Well I got left is:
>
> REVOKE PUBLIC FROM ak02;
>
i think you mean:
db115150=# revoke all on schema public from ak02;
REVOKE
db115150=# drop user ak02;
FEHLER: kann Rolle »ak02« nicht löschen, weil andere Objekte davon abhängen
DETAIL: Privilegien für Schema public
From | Date | Subject | |
---|---|---|---|
Next Message | Albe Laurenz | 2013-02-08 15:59:13 | Re: Bug, Feature, or what else? |
Previous Message | Marc Brazeau | 2013-02-08 15:51:39 | Re: pl/java for postgresql 9.2 |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2013-02-08 15:58:27 | Re: Considering Gerrit for CFs |
Previous Message | Alvaro Herrera | 2013-02-08 15:55:03 | Re: Vacuum/visibility is busted |