When you delete a record, Koha doesn't immediately erase it from the database; it moves it to a deleted table. These are the tables where deleted records are stored: deletedbiblio, deletedbiblio_metadata, deletedbiblioitems, and deleteditems.
Find the deleted Information
Since the records are no longer in the main catalogue, you need to look in the trash tables. The best way to do this is to run a simple report.Go to Reports > Guided Reports > Create from SQL.
Give it a name like Find Deleted Records.
Paste this SQL query to see everything in the trash:
SELECT biblionumber, title, author FROM deletedbiblio
Run the report and find the biblionumber of the records you deleted. Only a few numbers, write those numbers down.
