Bug #7341 | nr. of rows change in schema tables overview (catalogs) | ||
---|---|---|---|
Submitted: | 16 Dec 2004 2:02 | Modified: | 16 Dec 2004 16:19 |
Reporter: | Mark Junker | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Administrator | Severity: | S3 (Non-critical) |
Version: | 1.0.17 | OS: | Windows (WinXP Pro SP2) |
Assigned to: | CPU Architecture: | Any |
[16 Dec 2004 2:02]
Mark Junker
[16 Dec 2004 9:41]
Jerome Canler
I had exactly the same problem during restore process : progress stayed at 0% I solved this by changing the file charset from utf8 to latin1. So I think there's a problem in the charset auto detection as it tells 'probably utf8'
[16 Dec 2004 15:33]
Jerome Canler
Sorry, please ignore my last comment : it was destined for an other bug.
[16 Dec 2004 16:19]
MySQL Verification Team
Hi, MySQL Administrator displays number of rows according the ouput of SHOW TABLE STATUS command. For InnoDB tables this command doesn't provide exact number of rows. It gives only an approximate row count. From the MySQL manual: Rows The number of rows. Some storage engines, such as MyISAM and ISAM, store the exact count. For other storage engines, such as InnoDB, this value is an approximation, and may vary from the actual value by as much as 40 to 50%. In such cases, use SELECT COUNT(*) to obtain an accurate count.