https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26025
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |ommunity.org --- Comment #1 from Jonathan Druart <[email protected]> --- Hi Vinod, This is a quite old update DB version, and I am not sure it makes sense to fix it as nobody else reported the problem before. To handle this you could: 1. Restore a previous version of the DB 2. Fix the id collision in deletedbiblioitems This wiki page will help you to catch the problematic entries: https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix#Is_your_data_corrupted.3F Basically you need find the duplicate ID in deletedbiblio[items] tables, like: select count(*) as c, biblionumber from deletedbiblio group by biblionumber having c > 1; The easier is to remove the duplicated ID, but you may delete important data. If you want to keep the data you should modify the ID (this can be tricky, depending on the other data you have in biblio[items]) 3. Execute the updatedatabase script -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
