Hi,
Is it possible that you had upgraded your Osclass installation up to 8 times?
I'm asking because I suspect that there is some bug on upgrade process, I have found this issue also in my databases, but only in those that I've upgraded at some point, the more upgrades the more the number of duplicated indexes.
This issue won't stop everything working, but I think that it might affect performance a bit, because MySQL has to determine which index should be used depending on the query.
Anyway, I know no way to massively delete indexes, so if you want to get rid of them, run these queries in PhpMyAdmin:
DROP INDEX fk_i_category_id_2 ON oc_t_item;
DROP INDEX fk_i_category_id_3 ON oc_t_item;
DROP INDEX fk_i_category_id_4 ON oc_t_item;
and so on...
Regards