|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
setup permission for stored procedure on mysql 5
From: AESYS S.p.A. [Enzo Arlati] (enzo.arlati
aesys.it)
Date: Fri Nov 18 2005 - 07:37:10 CST
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
If I defined I stored procedure as root I can't be able to call this
procedure from a normal user.
I tried to grant it the execute method but the sintax seems wrong
For example suppose a simple store procedure like this:
CREATE PROCEDURE `test_root`()
BEGIN
declare a int default 0;
END
if I try to grant the execute permission to other users I got an error like
this:
mysql> grant execute on test_root to '%'
localhost;
ERROR 1144 (42000): Illegal GRANT/REVOKE command; please consult the manual
to s
ee which privileges can be used
The only way to get stored procedure working is to create it as normal
users, but this is not a polite way.
Someone can help ?
Regards, Enzo
enzo.arlati
aesys.it
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]