Ho risolto....credo 
Le modifiche da attuare sono queste
-- -------------------- Start SQL ------------------------ --
-- This will set the starting quantity of all prices to 0
update jos_vm_product_price set price_quantity_start=0 where price_quantity_start!=0;
-- This will set the ending quantity of all prices to 999
update jos_vm_product_price set price_quantity_end=999 where price_quantity_end!=999;
-- This will set the vendor_id for all products to be 1.
-- *** Make sure to verify that you have a vendor that exists
-- with ID of 1
update jos_vm_product set vendor_id=1 where vendor_id!=1;
-- Sets the product_unit to be 'piece', assuming it is referring to
-- the way it is packaged, and this means one piece. (for me, products
-- that were added pre-update had NULL values)
update jos_vm_product set product_unit='piece' where 1;
-- Sets the product_packaging to be 0. (for me, products that
-- were added pre-update had NULL values)
update jos_vm_product set product_packaging='0' where 1;
-- --------------------- End SQL -------------------------- --
Recuperate da qui
http://www.tylerwalts.com/content/view/19/9/Finalmente vedo tutti i prodotti caricati nel db e riesco a modificare i prezzi regolarmente.
Non ho ancora effettuato tutti i test necessari per considerere il mio problema (a quanto pare è solo mio) ma spero che questi post aiutino nell'eventuale risoluzione di problematiche analoghe in futuro.
Ciao