Is it possible to grant a privilege to a user such that they can execute all stored procs on the server (or even within a single db on that server). Looking at the grant syntax docs (5.5), it says that I have to grant execute on procedure <dbname>.<procname> to ....
for each and every stored proc. Is there a way to do this less clusily by manipulating the mysql db itself?
The word 'procedure' should be left out.
For any user privileges defined against database
mydb
run this:First, see if any users are defined in
mysql.db
withIf none of the users already have database-level privileges, then give it to them. If you want to grant every user the ability to run stored procedures against database
mydb
, run thisNotice I set :