Re: LIST OWNED BY...

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Thom Brown <thom(at)linux(dot)com>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: LIST OWNED BY...
Date: 2012-02-29 17:16:07
Message-ID: 3097.1330535767@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Thom Brown <thom(at)linux(dot)com> writes:
> So could we introduce either a command to show which objects are owned
> by a particular role, or allow a dry-run of DROP OWNED BY?

It's always been possible to do that:

begin;
drop owned by joe;
rollback;

I believe this is already the recommended approach if you're concerned
about what DROP CASCADE will do.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thom Brown 2012-02-29 17:20:52 Re: LIST OWNED BY...
Previous Message Thom Brown 2012-02-29 16:46:31 LIST OWNED BY...