Bulk delete products by SKU in uCommerce
You may already have come across my script to Quickly delete all products and orders from uCommerce but sometimes you need to delete just a set of products by SKU so here's a new one for you
BEGIN TRAN
DECLARE @ProductIds TABLE (Id int)
INSERT INTO @ProductIds (Id)