Re: Problem with SET CONSTRAINTS ALL DEFERRED;

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Kaloyan Iliev <news1(at)faith(dot)digsys(dot)bg>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Problem with SET CONSTRAINTS ALL DEFERRED;
Date: 2006-05-19 16:41:59
Message-ID: 20060519094126.S89276@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Fri, 19 May 2006, Kaloyan Iliev wrote:

> Hi Friends,
>
> I am trying to postpone the foreign key constraint check till the end of
> transaction but it doesn't work.
> Can anyone help me with a tip what I am doing wrong.

Was the constraint created as deferrable (which is not the default)?
ALL DEFERRED actually only applies to deferrable constraints.

>
> Thanks in advance.
>
> Kaloyan Iliev
>
> test=# BEGIN;
> BEGIN
> test=#
> test=# SET CONSTRAINTS ALL DEFERRED;
> SET CONSTRAINTS
> test=# DELETE FROM picture
> test-# USING
> element_picture
> test-# WHERE
> picture.id = element_picture.picture_id
> test-#
> AND element_picture.element_id = 8;
> ERROR: update or delete on "picture" violates foreign key constraint
> "picture_id" on "element_picture"
> DETAIL: Key (id)=(223) is still referenced from table "element_picture".
>
>
> select version();
> version
> ------------------------------------------------------------------------------------------------
> PostgreSQL 8.1.2 on i386-portbld-freebsd6.0, compiled by GCC cc (GCC)
> 3.4.4 [FreeBSD] 20050518
> (1 row)
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Ash Grove 2006-05-21 00:54:47 Re: insert related data into two tables
Previous Message Kaloyan Iliev 2006-05-19 11:30:43 Problem with SET CONSTRAINTS ALL DEFERRED;