Hi,
I'd like to display tables on the tree. I don't know why the tables are not displayed.
There is no filter on table, and I can see the functions...
When I use another database, there is no problem : I can see the tables in the tree.
And it's not a problem of rights. I can make request, and I can see the tables with workbench.
Any ideas?
Thanks,
Nicolas
I can't see tables on the tree (I can see functions and procedures) - Mysql 5.5
Thanks for your idea of 'SHOW TABLE STATUS'.
We have solved the issue.
It was caused by a view which needs a user who didn't exist in this database.
We find the solution with the error 1143 of
SHOW TABLE STATUS;
/* SQL Error (1143): SELECT command denied to user 'appli'@'%' for column 'XXXXX' in table 'YYYYYY' */
and
http://stackoverflow.com/a/6656302
Thanks,
We have solved the issue.
It was caused by a view which needs a user who didn't exist in this database.
We find the solution with the error 1143 of
SHOW TABLE STATUS;
/* SQL Error (1143): SELECT command denied to user 'appli'@'%' for column 'XXXXX' in table 'YYYYYY' */
and
http://stackoverflow.com/a/6656302
Thanks,
Please login to leave a reply, or register at first.