Greetings Koha Guru's We are currently in the progress of migrating from Follett Destiny to Koha. One of the issues that we are having is that a bunch of biblio items are being imported that do not have an item (and some that are). I have run the SQL query to remove biblio without items; however the biblio records are still showing up when I search in OPAC. When you click on one of these items, a page with error 404 appears Here is the script I ran to remove the biblio items INSERT into deletedbiblio (SELECT * FROM biblio where biblionumber NOT IN (SELECT biblionumber from items)); INSERT into deletedbiblioitems (SELECT * FROM biblioitems where biblionumber NOT IN (SELECT biblionumber from items)); DELETE FROM biblio where biblionumber NOT IN (SELECT biblionumber from items); -- View this message in context: http://koha.1045719.n5.nabble.com/Search-Results-without-items-tp5718603.htm... Sent from the Koha-general mailing list archive at Nabble.com.