From: | Jie Liang <jliang(at)ipinc(dot)com> |
---|---|
To: | Timothy Covell <dirac(at)applink(dot)net> |
Cc: | pgsql-general(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [GENERAL] Foreign Keys Help Delete! |
Date: | 2000-09-20 01:19:43 |
Message-ID: | 39C810AF.94E90D99@ipinc.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-sql |
Hi, Timothy,
Try:
1. dump out the data of routes and drop it,
2. re-build your routes table,
CREATE TABLE routes (
field1 type1,
fqhn stype2,
CONSTRAINT if_host_exists
FOREIGN KEY(fqhn) REFERENCES hosts
ON UPDATE CASCADE ON DELETE CASCADE
);
or use alter table add constraint .....
When update hosts's primary key, foreign key will be updated also, so
does delete.
However, I found foreign key of Pg7.0 is extremely slow for big table
loading, because
Pg constraint have no disable, novalidate choice, so it's not easy to
use so far, I believe.
Timothy Covell wrote:
> DB: Postgresql 7.0.2
> OS: Solaris 2.6
>
> Schema:
> hosts table with fqhn column
> routes table with fqhn foreign key hosts(fqhn)
>
> Problem:
>
> 1. When I try to change fqhn in hosts, it complains that
> I have now violated entry in "routes" table.
>
> 2. When I try to update "routes" table, it updates.
>
> 3. Go back to "hosts" table and now try to rename/delete
> old fqhn and it complains about object missing with OID=xxxxx.
>
> Questions:
>
> 1. What's the proper way to delete foreign keys?
> (I can dump the DB, edit it, and restore it, but that is
> not effecient!!)
>
> 2. How can I avoid problems such as above, besides not
> using foreign keys?
>
> 3. Are foreign keys broken in pg7.0.2???
>
> TIA
> tim
> dirac(at)applink(dot)net
--
Jie LIANG
Internet Products Inc.
10350 Science Center Drive
Suite 100, San Diego, CA 92121
Office:(858)320-4873
jliang(at)ipinc(dot)com
www.ipinc.com
From | Date | Subject | |
---|---|---|---|
Next Message | Jon Lustig | 2000-09-20 01:41:16 | syntax errors in initdb for NT install of pgsql 7.0 |
Previous Message | Stephan Szabo | 2000-09-20 00:37:22 | Re: [SQL] Foreign Keys Help Delete! |
From | Date | Subject | |
---|---|---|---|
Next Message | Louis-David Mitterrand | 2000-09-20 06:44:26 | Re: sum of agreggates in one SELECT? |
Previous Message | Stephan Szabo | 2000-09-20 00:37:22 | Re: [SQL] Foreign Keys Help Delete! |