Used this SQL query to remove the product posts and their meta data.
DELETE FROM wp_postmeta
WHERE post_id IN(SELECT ID FROM wp_posts WHERE post_type = 'product');
DELETE FROM wp_posts WHERE post_type = 'product';
Seemed to work for now but if anyone has a better solution please let me know ??