Error importing an object from the XML generated by the XSL transformation associated with the object type 'item1': 'item2' (ERR0252)

Build 1501 on 14/Nov/2017  This topic last edited on: 5/Aug/2014, at 08:55

This error may occur when attempting to process or spike an edition, where the pictures are missing, or the edition is corrupted:

Click to toggle graphic size

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