I can insert, update, delete, etc. to a table in my MySQL database but I cannot show the table status. Does anyone know which privilege(s) is needed to do this?

Here is my error message:

Access denied for user 'admin459'@'localhost' to database 'sample'
link|improve this question

75% accept rate
Good question! The manual is completely mute on this. dev.mysql.com/doc/refman/5.1/en/… – Pekka Nov 18 '10 at 17:05
dev.mysql.com/doc/refman/5.0/en/show.html - the last part plus the user comment indirectly refer SELECT=SHOW, however, if the user able to update/delete/insert, not sure why is blocked from select – ajreal Nov 18 '10 at 20:11
feedback

2 Answers

Seems odd... even my MySQL users with minimal priveledges can do SHOW TABLE STATUS's on their respective databases.

Can you give an example of the exact syntax you're attempting?

e.g. SHOW TABLE STATUS IN sample LIKE 'users'

link|improve this answer
feedback

Minimal (select only) privileges is all I need to get table status. What version of mysql?

grant select on test_dev.districts to td3@localhost identified by 'monkey';

then:

mysql -pmonkey  -u td3 TAMS_development -e 'show table status;'

works.

what does this return for you?

show grants for admin459@localhost;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.