https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22969 --- Comment #3 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- (In reply to Andreas Roussos from comment #2)
So, under what circumstances does this problem occur? How can I create a record that has biblionumber != biblioitemnumber?
Hi, indeed it should usually not occur. I think it sometimes appears when some insert in catalog fail to insert in biblio but create a row in biblioitems. In this case autoincrement of biblioitems.biblioitemnumber is higher than biblio.biblionumber. You may try a modification in direct SQL : UPDATE biblioitems SET biblioitemnumber = 6 WHERE biblioitemnumber=5; Only for a test database ! -- You are receiving this mail because: You are watching all bug changes.