InterviewSolution
Saved Bookmarks
| 1. |
The stored-routine privileges are contained in ______________(a) user(b) db(c) tables_priv(d) procs_privThe question was posed to me in an internship interview.This question is from Managing MySQL User Accounts in division General MySQL Administration of MySQL |
|
Answer» CORRECT CHOICE is (d) procs_priv The best explanation: ‘procs_priv’ stores stored-routine PRIVILEGES. The grant table ‘user’ stores the users who can CONNECT to the server and their global privileges. ‘db’ has the database privileges records. |
|