Anda bertanya:
Ya, Anda harus, seperti yang didokumentasikan di sini :
Anda menulis:
Tapi itu tidak begitu! :) Saat Anda melakukan INSERT normal, biasanya Anda tidak menentukan nilai eksplisit untuk kunci utama yang didukung SEQUENCE. Jika ya, Anda akan mengalami masalah yang sama seperti yang Anda alami sekarang:
postgres=> create table uh_oh (id serial not null primary key, data char(1));
NOTICE: CREATE TABLE will create implicit sequence "uh_oh_id_seq" for serial column "uh_oh.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "uh_oh_pkey" for table "uh_oh"
CREATE TABLE
postgres=> insert into uh_oh (id, data) values (1, 'x');
INSERT 0 1
postgres=> insert into uh_oh (data) values ('a');
ERROR: duplicate key value violates unique constraint "uh_oh_pkey"
DETAIL: Key (id)=(1) already exists.
Perintah COPY Anda, tentu saja, menyediakan id
yang eksplisit nilai, seperti contoh INSERT di atas.