This error may occur when attempting to process or spike an edition, where the pictures are missing, or the edition is corrupted:
To correct this error
Run the SQL query to find where is the binary id:
EXEC dbo.SearchAllTables 7905
This may be in:
[dbo].[s_MasterTable].[s_thumbnail]
To check, run
select * from s_MasterTable where s_thumbnail not in (select gn_id from gn_datatable) and s_thumbnail>0
To resolve, run:
update s_MasterTable set s_thumbnail = 0 where s_thumbnail not in (select gn_id from gn_datatable) and s_thumbnail>0