Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin is not displaying every record

Tags:

phpmyadmin

Hey I have a table with about 25700 records. But phpMyAdmin is only displaying about 24300 records. So if I just browsing throught the table he dont show me the last few records. The crazy thing is, if I do a specific select like:

SELECT * FROM table WHERE ID="25700"

he is displaying the single record but when I try to list all records with

SELECT * FROM table 

he is only displaying about 24300 records.

Another crazy fact is: if I wanna do an export with phpmyadmin is is not exporting those records which are only available by the first query.

Does anybody here has any experiance with that?

Thanks

like image 489
dopamin90 Avatar asked Nov 02 '25 11:11

dopamin90


1 Answers

Add the line: $cfg['MaxExactCount'] = 2000000; in your config.inc.php from your phpMyAdmin directory. It seems this problem occurs only with InnoDB tables. So to obtain the exact number of rows, just make $cfg['MaxExactCount'] large enough.

like image 126
Vlad Manuel Mureșan Avatar answered Nov 05 '25 14:11

Vlad Manuel Mureșan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!