I am trying to get the entire magento product collection, without any filters or restrictions, but I fail to get all products.
I\'ve tried various methods already, but t
You might be using Flat Catalog Product Structure . This create separate table for each store view.
Use Code below to print sql query . you will see the collection is coming from flat table like
catalog_product_flat_38
echo Mage::getModel('catalog/product')->getCollection()->getSelect();