ALTER PROCEDURE
The ALTER PROCEDURE statement modifies the characteristics of an existing stored procedure, such as its security context or comment, without changing its logic.
Syntax
ALTER PROCEDURE proc_name [characteristic ...]
characteristic:
{ CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }
| SQL SECURITY { DEFINER | INVOKER }
| COMMENT 'string'Description
Example
ALTER PROCEDURE simpleproc SQL SECURITY INVOKER;See Also
Last updated
Was this helpful?

