I just setup the phpMyAdmin and I have this problem: When I login, I can't see any tables.
I had tried this with MySQLWorkbench and I got the same result.
Any suggestions ?
|
I just setup the phpMyAdmin and I have this problem: When I login, I can't see any tables. I had tried this with MySQLWorkbench and I got the same result. Any suggestions ? |
||||
|
|
|
Running these commands are completely synonymous:
Under the hood, both of these commands will only check for the presence of .frm files in the currently selected database. In MySQLWorkbench, you must make sure you have a Default Schema selected. Otherwise, you should not get anything back. Here is what effectively happens from the mysql client's point-of-view:
Try the following in MySQLWorkbench:
After these steps, the selected database should be visible. Give it a Try !!! |
||||
|
|
|
The account that you are using to log into PHPmyAdmin/Workbench may not have permissions on the required tables. Do you see the required tables when you use the same login in the MySQL monitor console? Try logging in with a higher privileged account and viewing again. |
|||
|
|