Du skal hente tabelnavnene ved at køre følgende forespørgsel:
SELECT *
FROM information_schema.constraint_table_usage
WHERE table_name = 'your_table'
Alternativt kan du bruge pg_constraint
for at hente disse oplysninger
select n.nspname as schema_name,
t.relname as table_name,
c.conname as constraint_name
from pg_constraint c
join pg_class t on c.conrelid = t.oid
join pg_namespace n on t.relnamespace = n.oid
where t.relname = 'your_table_name';
Derefter kan du køre den påkrævede ALTER TABLE-sætning:
ALTER TABLE your_table DROP CONSTRAINT constraint_name;
Selvfølgelig kan du få forespørgslen til at returnere hele alter-sætningen:
SELECT 'ALTER TABLE '||table_name||' DROP CONSTRAINT '||constraint_name||';'
FROM information_schema.constraint_table_usage
WHERE table_name in ('your_table', 'other_table')
Glem ikke at inkludere table_schema i WHERE-sætningen (og ALTER-sætningen), hvis der er flere skemaer med de samme tabeller.