Re: failed insert into serial-type row

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jun 14, 2005 at 07:28:22AM +0200, Hortschitz, Stefan wrote:
> 
> sometimes if i'm adding new rows to the table with statements like
> this:
> 
>       insert into (name,value) ('xy','xy');
> 
> the database only returns an 'duplicate key on primary key', which
> should be prevented by the serial-datatype, or? how could it be, that
> two rows become the same id??

One possibility is that the table contains IDs that are higher than
the sequence value, so you occasionally get duplicates when you use
the sequence.  What are the results of the following queries?

SELECT max(id) FROM session.preferences;
SELECT * FROM session.preferences_id_seq;

If max(id) is higher than the sequence's last_value, then you can
adjust the sequence with setval() or ALTER SEQUENCE.  Then you
should to figure out how that happened so you can prevent it from
happening again.

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/


[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux