Hello,
I found an older thread (by Shaun Donovan, 2014) on the list discussing this issue and he offered some SQL commands for exploring the mappings of an item:
dspace=# select * from collection2item where item_id = '80596';
Using that, I removed all mappings except the legitimate ones:
dspace=# delete from collection2item where item_id = '80596' and id not in (90792, 90806, 90807);
After refreshing the item view for the particular item I now see only the three correct mappings remaining. Is this solution sufficient, or are there some other relationships I should take care of in the database?
Thank you,