problem with transaction

Поиск
Список
Период
Сортировка
От Guillermo Trutner
Тема problem with transaction
Дата
Msg-id 00c301c276df$73524030$973c53a8@antarest08pf
обсуждение исходный текст
Ответы Re: problem with transaction
Список pgsql-general
I have two tables as follow:
 
-- Table: d_coning

CREATE TABLE "d_coning" (

"anio" int4 NOT NULL,

"codigo_con" int4 NOT NULL,

CONSTRAINT "d_coning_pkey" PRIMARY KEY ("anio", "codigo_con")

) WITH OIDS;

-- Table: d_recaud

CREATE TABLE "d_recaud" (

"anio" int4 NOT NULL,

"codigo_con" int4 NOT NULL,

CONSTRAINT "d_recaud_pkey" PRIMARY KEY ("anio"),

CONSTRAINT "<unnamed>" FOREIGN KEY ("anio", "codigo_con") REFERENCES "d_coning" ("anio", "codigo_con") ON DELETE NO ACTION ON UPDATE NO ACTION NOT DEFERRABLE INITIALLY IMMEDIATE

) WITH OIDS;

When I put the follow into a transaction:

-- Primero borro las tablas correspondientes a año

DELETE FROM d_recaud WHERE anio = 2000;

DELETE FROM d_coning WHERE anio = 2000;

-- Ahora las inserto nuevamente

INSERT INTO d_coning (anio, codigo_con)

SELECT anio, codigo_con

FROM d_coning_pipe

WHERE anio = 2000

;

INSERT INTO d_recaud (anio, codigo_con)

SELECT anio, codigo_con

FROM d_recaud_pipe

WHERE anio = 2000 ;

I get the following error:
 
An error has ocurred in pgAdmin II:frmSQLInput.cmdExecute_Click:
 
Number: -2147467259
Description: Error while executing query;
ERROR: <unnamed> referential integrity violation - key in d_coning still referenced from d_recaud
 
If someone has got this error, please tell me the solution.
Thanks.
Guillermo.
 
-o-~-o-*-o-~-o-*-o-~-o-
Lic. Guillermo Trutner
-o-~-o-*-o-~-o-*-o-~-o-

В списке pgsql-general по дате отправления:

Предыдущее
От: Andrei Ivanov
Дата:
Сообщение: creating a new type in C
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: problem with transaction