How to update / change / convert all virtual products to simple in Magento 2?
For updating / changing / converting all products in magento 2 from virtual type to simple use this command in mysql ( using ssh or phpmyadmin ):
update catalog_product_entity set type_id = 'simple' where type_id = 'virtual';