From: | "Andrus" <eetasoft(at)online(dot)ee> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: How to replace rows in table so that foreign key rows |
Date: | 2006-04-20 18:17:37 |
Message-ID: | e28jhr$ktj$1@news.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
> I did so, and for a table named 'country' the following SQL statements
> were produced:
>
> -- Disable triggers
> UPDATE pg_catalog.pg_class SET reltriggers = 0 WHERE oid =
> 'country'::pg_catalog.regclass;
>
> /* COPY command goes here to bulk load table data. */
>
> -- Enable triggers
> UPDATE pg_catalog.pg_class SET reltriggers = (SELECT pg_catalog.count(*)
> FROM pg_catalog.pg_trigger where pg_class.oid = tgrelid) WHERE oid =
> 'country'::pg_catalog.regclass;
Berend,
thank you for bright idea.
this may cause invalid foreign key data to be loaded into database.
I want that in end of transaction Postgres will check for correctness of
foreign keys like DEFERRED clause suggests.
How this check can be forced ?
Andrus.
From | Date | Subject | |
---|---|---|---|
Next Message | Stephan Szabo | 2006-04-20 18:56:04 | Re: How to replace rows in table so that foreign key rows |
Previous Message | Clodoaldo Pinto | 2006-04-20 17:55:50 | Re: Calling the same function more than once with the same arguments |