I have some corrupted data, an individual entry, in the database for my Magento installation. Since I can see the corrupted data displaying, I’d like to use a Magento extension to show me the database call displaying that data onscreen. Does such a tool exist? If not, what would be the best tool for SQL to gather this information?
Share
You can see the SQL statement used to load a collection by using
$collection->getSelect(). You’d have to narrow down the collection call first though, which might not be much help in your case.