1030 - Got error 28 from storage engine

select distinct p.products_id, p.products_model, p.products_image, p.products_tax_class_id, pd.products_name, pd.products_description, s.specials_new_products_price, p.products_price, p.products_date_added from products p left join products_to_categories p2c using(products_id) left join categories c using(categories_id) left join featured f on p.products_id = f.products_id left join products_description pd on p.products_id = pd.products_id left join specials s on p.products_id = s.products_id where p.products_status = '1' and pd.language_id = '4' and pd.products_id = p2c.products_id and f.status = '1' order by rand() DESC limit 4

[TEP STOP]