I expected to see all records of all entities in the table eav_entity
. But I see that Magento has created separate tables for each of the 8 entities ( customer, customer_address, category, product, order, invoice, shipment, creditmemo)
with the following table names ( customer_entity, customer_address_entity, catalog_category_entity, catalog_product_entity, sales_flat_order, sales_flat_invoice, sales_flat_shipment, sales_flat_creditmemo)
. So eav_entity
table is empty and you get data for entities directly from their respective tables.. Some level of de-EAVing the database design :-)