Answers for "duplicate key value violates unique constraint"

SQL
2

postgresql resolv duplicate value violates unique constraint

SELECT setval(pg_get_serial_sequence('users', 'id'), coalesce(max(id)+1, 1), false) FROM users;
Posted by: Guest on December-16-2020
0

duplicate key value violates unique constraint "pg_type_typname_nsp_index"

I was reading this. It seems this error rises when you are creating/updating the same table with parallel processing. I understand it depends because of this (as explained on the google group discussion).

So I think it depend from PostgreSQL itself and not from the connection driver or the module used for the multiprocessing.

Well, Actually, the only way I found to solve this is to create chunks big enough to have back a writing process slower than the calculation itself. With bigger chunks this error doesn't rise.
Posted by: Guest on March-08-2021
0

duplicate key value violates unique constraint "django_migrations_pkey"

from django.db import connections

query = "SELECT setval('django_migrations_id_seq', (SELECT MAX(id) FROM django_migrations))"
cursor = connections['default'].cursor()
cursor.execute(query) 
row = cursor.fetchone()
Posted by: Guest on December-09-2020

Code answers related to "duplicate key value violates unique constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language