Re: How can I look at a recursive table dependency tree? - Mailing list pgsql-general

From Ivan Sergio Borgonovo
Subject Re: How can I look at a recursive table dependency tree?
Date
Msg-id 20090119161051.27a459c5@dawn.webthatworks.it
Whole thread Raw
In response to Re: How can I look at a recursive table dependency tree?  (Richard Huxton <dev@archonet.com>)
Responses Re: How can I look at a recursive table dependency tree?  (Richard Huxton <dev@archonet.com>)
List pgsql-general
On Mon, 19 Jan 2009 14:41:12 +0000
Richard Huxton <dev@archonet.com> wrote:

> Ivan Sergio Borgonovo wrote:
> > On Mon, 19 Jan 2009 14:19:51 +0000
> > Richard Huxton <dev@archonet.com> wrote:
> >
> >> Igor Katson wrote:
> >>> Is there a way to watch all dependencies recursively without
> >>> doing a drop?
> >
> >> BEGIN;
> >> DROP CASCADE...
> >> -- check things
> >> ROLLBACK;
> >
> > Isn't it going to be a pretty expensive way to see?

> Not necessarily - you're not likely to have a lot of concurrency
> on a backup database. And we are all testing this sort of stuff on
> a backup database, aren't we?

Isn't it going to be expensive even if there is no concurrency?

mvcc should be pretty efficient to rollback transactions but... well
it should have a cost anyway... and you add deleting to rolling
back, not just traversing some schema somehow.

Surely recursively traversing a schema may be expensive in termos of
programming time if there is no pre-build function.

--
Ivan Sergio Borgonovo
http://www.webthatworks.it


pgsql-general by date:

Previous
From: Richard Huxton
Date:
Subject: Re: How can I look at a recursive table dependency tree?
Next
From: Tom Lane
Date:
Subject: Re: left join with smaller table or index on (XXX is not null) to avoid upsert