Re: [SQL] How to rename a constraint/trigger??

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: "Andrei Bintintan" <klodoma(at)ar-sd(dot)net>, <pgsql-sql(at)postgresql(dot)org>, <pgsql-admin(at)postgresql(dot)org>
Subject: Re: [SQL] How to rename a constraint/trigger??
Date: 2004-09-08 17:05:00
Message-ID: 200409081005.00682.josh@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-sql

Andrei,

> I have a database, where in the tables I have around 100 constrains (link
> to other tables) that don't have a name "<unnamed>" or they have a name
> like "$1" "$2". Now, I have a module which bases on the same structure, but
> I get some query errors from a "<unnamed>" constraint. I really don't know
> exaclty which the constrain generates the error, in that table I have 12
> such constrains.

You'll be happy to know that in 7.4 we stopped using "<unnamed>".

> Does anyone have a script or it exist a command so that I can rename all
> the "<unnamed>"constrains in this database?

You can't rename constraints, you have to drop and re-create them under a new
name (do this in a transaction for data safety). However, this requires
knowing what all those constraints do. I'd suggest doing a text pg_dump
file of your schema only (no data) and looking in the constraints section at
the end.

--
Josh Berkus
Aglio Database Solutions
San Francisco

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Scott Marlowe 2004-09-08 17:22:08 Re: changing the size of a varchar column
Previous Message Mário Gamito 2004-09-08 17:02:32 postgres stopped working

Browse pgsql-sql by date

  From Date Subject
Next Message Oliver Elphick 2004-09-08 17:20:17 Re: Isnumeric function?
Previous Message Josh Berkus 2004-09-08 16:47:17 Re: Isnumeric function?