I want to use functions in MaxDB, but it is not clear how to grant execute
privilege.
For example a simple next_num function can be created as
CREATE FUNCTION NEXT_NUM (N INTEGER) RETURNS INTEGER AS
RETURN N + 1;
But
GRANT EXECUTE ON NEXT_NUM TO PUBLIC
--->
General error;-4016 POS(18) Unknown procedure name:NEXT_NUM.
GRANT EXECUTE ON NEXT_NUM TO PUBLIC
What is the problem?
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]