I have different stores of different products. I want to change all products prices of particular store. I have a code of it. But it takes so much time on save function because i have so many products.
$product = Mage::getModel('catalog/product')
->setStoreId($storeid)
->load($productid)->setPrice($price);$product->save();
Is there any better way?