Your browsing error is probably related to a non-MySQL created directory created in the MySQL data directory. MySQL directly maps the database structure to the file system, databases are mapped to directories, and tables are files in these directories.
The name of a non-working database looks suspicious, as someone copied the mysql database to a backup at some point and left it in the MySQL data directory. This is not a problem if you are not trying to use the database for anything. Unfortunately, the information scheme scans all found databases and finds that it is not a real database and is upset.
The solution is to find the mysql.bak directory on your hard drive and move it away from MySQL.
Martin Hilton May 21 '10 at 23:38 2010-05-21 23:38
source share