I have tables that mutually reference one another, which prevents initial addition of data to the tables. EG:<br><br>"page_content_version_fkey" FOREIGN KEY (content_version, id) REFERENCES content(version, page) ON UPDATE CASCADE ON DELETE CASCADE<br><br>"content_page_fkey" FOREIGN KEY (page) REFERENCES page(id) ON UPDATE CASCADE ON DELETE CASCADE<br><br>Is there a way to temporarily disengage or silence or otherwise render harmless those constraints to allow the data load? Postgresql 81<br><br>I tried running the data load inside a transaction, but no joy.<br><br>/dennis<br><br><br><br>