How to hide mysql stored procedure -
how hide mysql stored procedure: encryption available in sql server store procedure. try hide stored procedure outside users
as documented under show create procedure syntax:
this statement mysql extension. returns exact string can used re-create named stored procedure. similar statement,
show create function, displays information stored functions (see section 13.7.5.10, “show create functionsyntax”).both statements require owner of routine or have
selectaccessmysql.proctable. if not have privileges routine itself, value displayedcreate procedureorcreate functionfieldnull.
therfore, prevent users viewing body of stored procedure, ensure that:
they not owner of sproc; and
they not have access
mysql.proctable.
you can read more the mysql access privilege system.
Comments
Post a Comment