Looking up table names by REFERENCES

From: Steve Castellotti <SteveC(at)innocent(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Looking up table names by REFERENCES
Date: 2005-01-24 15:09:09
Message-ID: 1106579349.746.8.camel@odyssey
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Hello all. I'm trying to write a recursive procedure to allow me to
handle some data backup routines and deal with conflicts when restoring
from within the program.

Essentially, what I'd like to be able to do is if a table called
"image" has a column called "file_id" which references a column called
"file_id" in another table called "file" I want to be able to determine
that pragmatically. If I wanted to backup all of the information about
images in the database, I would need to backup all of the information
about the file(s) each image corresponds to.

For instance, I can get a list of all (user) table names with:

SELECT relname AS table_name, oid
FROM pg_class
WHERE NOT relname ~ 'pg_.*'
AND NOT relname ~ 'pga_.*'
AND NOT relname ~ '.*_pkey'
AND NOT relname ~ '.*_id_key'
ORDER BY relname;

and I can get a list of column names and their types (for the "image"
table) with:

SELECT a.attname AS field, t.typname AS type
FROM pg_class c, pg_attribute a, pg_type t
WHERE c.relname = 'image' and a.attnum > 0
and a.attrelid = c.oid and a.atttypid = t.oid
ORDER BY a.attnum;

Surely there's a simple way I can trace REFERENCES in a particular
column across tables?

Any help would be most appreciated, especially if I could be cc'd
directly.

Cheers

Steve Castellotti

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Martin Schäfer 2005-01-24 16:34:09 How to find out programmatically whether a query on a view will use an index?
Previous Message Michael Fuhr 2005-01-24 06:45:49 Re: update from multiple rows