Created
December 22, 2015 06:11
-
-
Save StevenMMortimer/35d69ec4a7510917c994 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- create a rule that will ignore dupe inserts | |
-- this is done on a table-by-table basis | |
CREATE OR REPLACE RULE db_table_ignore_duplicate_inserts AS | |
ON INSERT TO schema.table | |
WHERE EXISTS ( | |
SELECT 1 | |
FROM schema.table | |
WHERE id = NEW.id | |
) | |
DO INSTEAD NOTHING; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment