[Brazelton] Larry Tesler

I couldn't paste mine either. Not because it's lewd, but because it's corporate sensitive information :confused:
 
Last edited:

GasBandit

Staff member
Travel from shop to Crown Plaza Market Hotel in Vehicle 15

I guess the last thing I copied was from my expense report.
 
select
(select r.relname from pg_class r where r.oid = c.conrelid) as table,
(select array_agg(attname) from pg_attribute
where attrelid = c.conrelid and ARRAY[attnum] <@ c.conkey) as col,
(select r.relname from pg_class r where r.oid = c.confrelid) as ftable
from pg_constraint c
where c.confrelid = (select oid from pg_class where relname = 'TARGET_TABLE_NAME');

I was trying to find depencies in postgres.
 
Top