As a best practice, add some descriptive comments on stored procedures by using the COMMENT ON command capability.
COMMENT ON PROCEDURE customer() IS 'A procedure that displays a
customer name.';
COMMENT
COMMENT ON PROCEDURE <procedure name> (<argument type list>) IS
'Author: <name>
Version: <version>
Description: <description>';
COMMENT ON PROCEDURE customer() IS 'Author: bsmith
Version: 1.0 Description: A procedure that writes a customer name to
the database log file.';
To comment on a stored procedure, you must either be the Netezza admin user, the owner of the procedure, or you must have Alter permissions for procedure objects. For more information about COMMENT ON, see the IBM Netezza Database User’s Guide.
Error: CommentProcedure: existing procedure name(argument type list)
differs in size of string/numeric arguments