View Issue Details

IDProjectCategoryView StatusLast Update
0000971OXID eShop (all versions)4.07. Source code, Testpublic2012-12-10 13:45
Reportermarco_steinhaeuser Assigned To 
PrioritynormalSeveritymajorReproducibilityrandom
Status closedResolutionwon't fix 
Product Version4.1.2 revision 18998 
Summary0000971: accessing INFORMATION_SCHEMA.tables may cause performance problems in admin area
DescriptionIn this thread
http://www.oxid-esales.com/forum/showthread.php?t=1302
Light-Beam suffers from massive performance problems in the moment he tries to enter the admin area.

Together with his hosting provider he found out that /core/oxsystemrequirements.php (select on ln. 479) grabs information from the information_schema table.

The provider says, this is not forbidden but can cause massive performance problems (IMO depending on the system configuration).

Don't know if this is a clear bug but worth having a look at. Maybe we could find a smart resolution. If not possible to resolve - it is a documentation bug and shall be mentioned in the system requirements.
TagsNo tags attached.
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Activities

marco_steinhaeuser

2009-06-05 15:50

reporter   ~0001014

Resolved by the hoster replacing

$aRez = oxDb::getDb()->getAll($sSelect);

by
$aRez = array();

birute_meilutyte

2009-06-08 16:33

reporter   ~0001030

information from information_schema table is used to check, if collations in db tables are correct (one of the requirements for system compatability check). the way marco_steinhaeuser fixed it, simply skips this collation check.

ralf_trapp

2009-07-29 09:49

reporter   ~0001312

It's a MySQL bug. See here. http://bugs.mysql.com/bug.php?id=19588