fk que no está funcionando

Hola
 
-- Foreign Key: negocio.fk_sga_actas_detalle_sga_escalas_notas_det
-- ALTER TABLE negocio.sga_actas_detalle DROP CONSTRAINT fk_sga_actas_detalle_sga_escalas_notas_det;
ALTER TABLE negocio.sga_actas_detalle
  ADD CONSTRAINT fk_sga_actas_detalle_sga_escalas_notas_det FOREIGN KEY (escala_nota, nota)
      REFERENCES negocio.sga_escalas_notas_det (escala_nota, nota) MATCH SIMPLE
      ON UPDATE RESTRICT ON DELETE RESTRICT;
 
esta fk no está funcionando.
O sea tengo registros en sga_actas_detalle que tienen escala_nota-nota que no existe en la tabla de referencia.
 
Como puedo hacer para saber que está pasando?
 
Emilio

Hicieron una deshabilitación de triggers sobre la tabla?
Te paso un fragmento de la documentación de postgres:

ALTER TABLE …
DISABLE TRIGGER [ trigger_name | ALL | USER ]

trigger_name
Name of a single trigger to disable or enable.

ALL
Disable or enable all triggers belonging to the table. (This requires superuser privilege if any of the triggers are internally generated constraint triggers such as those that are used to implement foreign key constraints or deferrable uniqueness and exclusion constraints.)

USER
Disable or enable all triggers belonging to the table except for internally generated constraint triggers such as those that are used to implement foreign key constraints or deferrable uniqueness and exclusion constraints.